diff --git a/docker/nginx/dist/conf/tpotweb.conf b/docker/nginx/dist/conf/tpotweb.conf index 5dc71ec5..b9f3cc68 100644 --- a/docker/nginx/dist/conf/tpotweb.conf +++ b/docker/nginx/dist/conf/tpotweb.conf @@ -90,19 +90,19 @@ server { ### Kibana location /kibana/ { - proxy_pass http://localhost:64296; + proxy_pass http://127.0.0.1:64296; rewrite /kibana/(.*)$ /$1 break; } ### ES location /es/ { - proxy_pass http://localhost:64298/; + proxy_pass http://127.0.0.1:64298/; rewrite /es/(.*)$ /$1 break; } ### head standalone location /myhead/ { - proxy_pass http://localhost:64302/; + proxy_pass http://127.0.0.1:64302/; rewrite /myhead/(.*)$ /$1 break; }