9e9a63ea1a
Update startBrowser x MON PI
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
server {
|
|
listen 80;
|
|
location / {
|
|
# proxy_pass http://localhost:5000;
|
|
# proxy_http_version 1.1;
|
|
# proxy_set_header Upgrade $http_upgrade;
|
|
# proxy_set_header Connection $connection_upgrade;
|
|
## proxy_set_header Connection keep-alive;
|
|
# proxy_set_header Host $host;
|
|
# proxy_cache_bypass $http_upgrade;
|
|
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
# proxy_set_header X-Forwarded-Proto $scheme;
|
|
return 301 https://gwmshome.egalware.com;
|
|
}
|
|
location /pizzaferri {
|
|
proxy_pass http://localhost:5003;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection $connection_upgrade;
|
|
# proxy_set_header Connection keep-alive;
|
|
proxy_set_header Host $host;
|
|
proxy_cache_bypass $http_upgrade;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
}
|