sprint/nginx.conf
Egor Matveev d5f6f70b3d nginx
2022-03-09 01:25:45 +03:00

16 lines
278 B
Nginx Configuration File

upstream app {
server demo.dev.sprinthub.ru:8000;
}
server {
listen 80;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://app;
}
}