Merge pull request #1 from linuxserver/master

Rebase
This commit is contained in:
chbmb 2019-04-29 20:35:34 +01:00 committed by GitHub
commit be27aeef92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -25,6 +25,6 @@ server {
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s; resolver 127.0.0.11 valid=30s;
set $upstream_kanzi kanzi; set $upstream_kanzi kanzi;
proxy_pass http://$upstream_kanzi:8000; proxy_pass https://$upstream_kanzi:8000;
} }
} }

View file

@ -16,5 +16,5 @@ location ^~ /kanzi/ {
resolver 127.0.0.11 valid=30s; resolver 127.0.0.11 valid=30s;
set $upstream_kanzi kanzi; set $upstream_kanzi kanzi;
rewrite /kanzi(.*) $1 break; rewrite /kanzi(.*) $1 break;
proxy_pass http://$upstream_kanzi:8000; proxy_pass https://$upstream_kanzi:8000;
} }