From 25775ab2a1223d131dcced07819c733a020673c7 Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Mon, 22 Nov 2021 10:29:07 -0700 Subject: [PATCH] fixes websocket access on tor --- appmgr/src/nginx/main-ui.conf.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appmgr/src/nginx/main-ui.conf.template b/appmgr/src/nginx/main-ui.conf.template index 8a3e27145..3f0710d45 100644 --- a/appmgr/src/nginx/main-ui.conf.template +++ b/appmgr/src/nginx/main-ui.conf.template @@ -74,7 +74,7 @@ server {{ }} location /ws/ {{ - proxy_pass http://127.0.0.1:5960/; + proxy_pass http://127.0.0.1:5960$request_uri; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; }}