Files
RadMac/nginx/nginx.conf
2025-03-28 08:23:48 -04:00

16 lines
383 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://app:5000;
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;
}
}
}