Files
aranroig.com/nginx.conf
Aran Roig 95d095cbe4
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 12s
test
2026-03-17 22:29:04 +01:00

33 lines
841 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name _;
# Api Requests
location /api/ {
proxy_pass http://backend:5000;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# Normal requests
location / {
proxy_pass http://frontend:3000;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}