We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e39f32 commit ebedc26Copy full SHA for ebedc26
nginx/default.conf
@@ -29,12 +29,14 @@ server {
29
ssl_ciphers HIGH:!aNULL:!MD5;
30
31
location /ws-chat {
32
- proxy_pass http://tinybite-api-blue:8080;
+ proxy_pass http://tinybite-api-blue:8080/ws-chat;
33
proxy_http_version 1.1;
34
proxy_set_header Upgrade $http_upgrade;
35
proxy_set_header Connection "Upgrade";
36
proxy_set_header Host $host;
37
proxy_set_header X-Real-IP $remote_addr;
38
+ proxy_set_header X-Forwarded-Proto $scheme;
39
+ proxy_read_timeout 600s;
40
}
41
42
location / {
0 commit comments