Files
huike-front/container/nginx.conf
T
weli a661e439a0 chore: initialize frontend repo with teaching terminology updates
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
2026-04-23 16:37:14 +08:00

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;
}
}