Files
aranroig.com/nginx.conf
BinarySandia04 45404157b3
Some checks failed
Build and Deploy Nuxt / build (push) Failing after 2m1s
Backend integrated?
2026-03-17 19:48:05 +01:00

31 lines
831 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name _;
# 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;
}
# 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;
}
}
}