1 parent e0d2878 commit e92026cCopy full SHA for e92026c
1 file changed
nginx/default.conf
@@ -28,6 +28,15 @@ server {
28
ssl_protocols TLSv1.2 TLSv1.3;
29
ssl_ciphers HIGH:!aNULL:!MD5;
30
31
+ location /ws-chat {
32
+ proxy_pass http://tinybite-api-blue:8080;
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
+ }
39
+
40
location / {
41
client_max_body_size 10m;
42
proxy_pass http://tinybite-api-blue:8080;
0 commit comments