You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
351 B
16 lines
351 B
5 years ago
|
server {
|
||
|
listen 8898;
|
||
|
server_name _;
|
||
|
resolver 127.0.0.11 valid=30s;
|
||
|
|
||
|
location / {
|
||
|
set $upstream http://whirlpool:8898;
|
||
|
proxy_pass $upstream;
|
||
|
proxy_http_version 1.1;
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header Connection 'upgrade';
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_cache_bypass $http_upgrade;
|
||
|
}
|
||
|
}
|