test-MicroservicesPyNginx/web/nginx.conf
unkas.a@skynet.kz 26f91a08fe first commit
2024-08-07 10:51:47 +05:00

15 lines
353 B
Nginx Configuration File

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