Files
COS498-HW3/frontend/default.conf
T
2025-11-25 22:55:02 +00:00

18 lines
311 B
Plaintext

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# # Serve static files
# location / {
# try_files $uri $uri/ /index.html;
# }
# Proxy all requests to Node.js app
location / {
proxy_pass http://backend-nodejs:3000/;
}
}