16 lines
278 B
Nginx Configuration File
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;
|
|
}
|
|
|
|
} |