Files
django_bartool_ovh/nginx/nginx.conf
2024-11-24 19:11:41 +00:00

16 lines
271 B
Nginx Configuration File

upstream bartool_ovh {
server web:8000;
}
server {
listen 80;
location / {
proxy_pass http://bartool_ovh;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_redirect off;
}
}