Skip to content

Commit ebedc26

Browse files
committed
hotfix : nginx 설정 변경
1 parent 5e39f32 commit ebedc26

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

nginx/default.conf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ server {
2929
ssl_ciphers HIGH:!aNULL:!MD5;
3030

3131
location /ws-chat {
32-
proxy_pass http://tinybite-api-blue:8080;
32+
proxy_pass http://tinybite-api-blue:8080/ws-chat;
3333
proxy_http_version 1.1;
3434
proxy_set_header Upgrade $http_upgrade;
3535
proxy_set_header Connection "Upgrade";
3636
proxy_set_header Host $host;
3737
proxy_set_header X-Real-IP $remote_addr;
38+
proxy_set_header X-Forwarded-Proto $scheme;
39+
proxy_read_timeout 600s;
3840
}
3941

4042
location / {

0 commit comments

Comments
 (0)