From 3e9e202c34bdcff87c32d6e71c041ff20dbd00a5 Mon Sep 17 00:00:00 2001 From: Charlie Date: Thu, 2 Nov 2023 12:18:20 +0900 Subject: [PATCH] Update nginx.conf --- nginx/nginx.conf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 1b354d3..6efe280 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -23,6 +23,14 @@ http { proxy_pass http://172.17.0.1:8080; } + location /ws { + proxy_pass http://172.17.0.1:8080; + } + + location /connect { + proxy_pass http://172.17.0.1:8080; + } + location / { root /usr/share/nginx/html; index index.html index.htm; @@ -36,4 +44,4 @@ http { access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; -} \ No newline at end of file +}