From 828982f93ce586035a9c1c3e9a5917c387a97afd Mon Sep 17 00:00:00 2001 From: Bryan Roessler Date: Thu, 21 Oct 2021 16:05:06 -0400 Subject: [PATCH] Reverse proxy --- script-install-reverse-proxy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script-install-reverse-proxy b/script-install-reverse-proxy index 0dfb8496..13b3657d 100644 --- a/script-install-reverse-proxy +++ b/script-install-reverse-proxy @@ -13,12 +13,12 @@ server { listen 80 default_server; server_name localhost; location /cockpit { - proxy_pass http://localhost:9090/; - #proxy_redirect http://localhost:9090/; + proxy_pass http://127.0.0.1:9090/; + proxy_redirect http://127.0.0.1:9090/; } location /robot { - proxy_pass http://localhost:8888/; - proxy_redirect http://localhost:8888/; + proxy_pass http://127.0.0.1:8888/; + proxy_redirect http://127.0.0.1:8888/; } } EOF