sprint/nginx.conf
Egor Matveev 716953d6ca nginx
2022-03-09 01:31:19 +03:00

17 lines
305 B
Nginx Configuration File

upstream app {
server 127.0.0.1:8000;
}
server {
listen 80;
server_name demo.dev.sprinthub.ru;
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;
}
}