Files
Transcendence/srcs/frontend/nginx.conf
T

19 lines
329 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# Frontend
location / {
try_files $uri /index.html;
}
# Backend API
location /api/ {
proxy_pass http://backend:3001/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}