From 80113a36d602220d63a44de633b3c7e6ced77af2 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Tue, 2 Apr 2024 15:37:16 +0200 Subject: [PATCH] Update nginx.conf --- nginx-uffizzi/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx-uffizzi/nginx.conf b/nginx-uffizzi/nginx.conf index 137e462c42..589caf8c85 100644 --- a/nginx-uffizzi/nginx.conf +++ b/nginx-uffizzi/nginx.conf @@ -17,7 +17,7 @@ http { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-NginX-Proxy true; - proxy_pass http://localhost:4040/dashboard/; + proxy_pass http://localhost:4040; proxy_ssl_session_reuse off; proxy_set_header Host $http_host; proxy_redirect off; @@ -29,7 +29,7 @@ http { proxy_set_header X-Real-IP $remote_addr; keepalive_requests 10; keepalive_timeout 75s; - proxy_pass http://localhost:1337/parse/; + proxy_pass http://localhost:1337; proxy_http_version 1.1; } }