From d67d2c6bc99f3948323d23e111681c724e1b9a78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Wed, 9 May 2018 17:01:29 +0200 Subject: [PATCH] Fix nginx redirecting to port 8888 on platform on /webservice (no trailing slash) --- nginx/default.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx/default.conf b/nginx/default.conf index 563bced..abcd7fe 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -4,6 +4,7 @@ server { proxy_connect_timeout 7d; proxy_send_timeout 7d; proxy_read_timeout 7d; + absolute_redirect off; location = /ws { proxy_pass http://127.0.0.1:${TFW_WEB_PORT};