Merge pull request #35 from CHBMB/kanzi_ssl

Kanzi changed to https
This commit is contained in:
aptalca 2019-04-24 10:40:53 -04:00 committed by GitHub
commit 889fa36c8a
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;
resolver 127.0.0.11 valid=30s;
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;
set $upstream_kanzi kanzi;
rewrite /kanzi(.*) $1 break;
proxy_pass http://$upstream_kanzi:8000;
proxy_pass https://$upstream_kanzi:8000;
}