a661e439a0
Add the current frontend codebase with a baseline .gitignore and update piano-specific UI terms to teaching-oriented terms for the current product context. Made-with: Cursor
18 lines
308 B
Nginx Configuration File
18 lines
308 B
Nginx Configuration File
server {
|
|
listen 8010;
|
|
server_name localhost;
|
|
|
|
root /home/nginx/website;
|
|
index index.html;
|
|
|
|
location /ws/ {
|
|
proxy_pass http://htyws:WS_PORT;
|
|
}
|
|
location /uc/ {
|
|
proxy_pass http://htyuc:UC_PORT;
|
|
}
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|