From 5d6e80dd85caf22159182cf321e01ebdf82bba33 Mon Sep 17 00:00:00 2001
From: Jacopo Gasparetto <jacopo.gasparetto@cnaf.infn.it>
Date: Wed, 5 Apr 2023 15:45:49 +0200
Subject: [PATCH] Fix websocket not found error message

---
 nginx/default.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nginx/default.conf b/nginx/default.conf
index 1f0c9b6..df32961 100644
--- a/nginx/default.conf
+++ b/nginx/default.conf
@@ -22,7 +22,7 @@ server {
 
   # https://stackoverflow.com/questions/70585472/websocketclient-js16-websocket-connection-to-ws-localhost3000-ws-failed-r
   location /ws {
-    proxy_pass http://frontend/;
+    proxy_pass http://frontend;
     proxy_http_version 1.1;
     proxy_set_header Upgrade $http_upgrade;
     proxy_set_header Connection "upgrade";
-- 
GitLab