Skip to content

Commit

Permalink
Update nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
CDBchan authored Nov 2, 2023
1 parent ac2910b commit 3e9e202
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -36,4 +44,4 @@ http {

access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
}
}

0 comments on commit 3e9e202

Please sign in to comment.