Files
aranroig.com/nginx.conf
BinarySandia04 3e0cdf8cc4
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 12s
First test commit
2026-03-17 18:50:04 +01:00

19 lines
430 B
Nginx Configuration File

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