gmba_django/nginx/nginx.conf

16 lines
287 B
Nginx Configuration File
Raw Normal View History

upstream gmba_django {
2022-09-19 03:35:14 +00:00
server gmba_django_nginx_1:8000;
}
server {
listen 80;
location / {
proxy_pass http://gmba_django;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_redirect off;
}
}