18 lines
311 B
Plaintext
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/;
|
|
}
|
|
}
|