Common Module - Add SSL to Kibana

This commit is contained in:
Mike Reeves
2018-10-11 12:25:41 -04:00
parent 995aeebf58
commit 4272b439fd
3 changed files with 7 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ http {
#include /etc/nginx/default.d/*.conf;
location / {
try_files $uri $uri.html index.html;
try_files $uri $uri.html /index.html;
}
location /app/kibana {
@@ -93,7 +93,7 @@ http {
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_pass http://{{ masterip }}:5601/;
proxy_pass http://{{ masterip }}:5601/app/kibana;
}
error_page 404 /404.html;