omfg it works
This commit is contained in:
parent
a19af3ba28
commit
d370c5fbc8
|
@ -15,8 +15,16 @@ data:
|
|||
auth_basic "Riju administrative proxy";
|
||||
auth_basic_user_file /etc/nginx/passwd;
|
||||
|
||||
location ~ /(10\.[0-9]+\.[0-9]+\.[0-9]+)/(.*) {
|
||||
proxy_pass http://$1:869/$2;
|
||||
location ~ /(10\.[0-9]+\.[0-9]+\.[0-9]+)/health {
|
||||
proxy_pass http://$1:869/health;
|
||||
}
|
||||
|
||||
location ~ /(10\.[0-9]+\.[0-9]+\.[0-9]+)/exec {
|
||||
proxy_pass http://$1:869/exec$is_args$args;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header Host $host;
|
||||
}
|
||||
|
||||
location / {
|
||||
|
|
Loading…
Reference in New Issue