]> Nutra Git (v2) - nutratech/vps-root.git/commitdiff
add second section?
authornutra-bot <nutradigest@gmail.com>
Sun, 24 Jul 2022 19:03:32 +0000 (19:03 +0000)
committernutra-bot <nutradigest@gmail.com>
Sun, 24 Jul 2022 19:03:32 +0000 (19:03 +0000)
etc/nginx/sites-available/default

index bd560b40c80fbdfe436f638b8b3eb59916e238d4..4cbff3ddbb05c612868c599b7474d01f87a85ed9 100644 (file)
@@ -43,6 +43,25 @@ server {
 
   # Matter most (Chat / Slack alternative)
   location /chat/ {
+    client_max_body_size 50M;
+    proxy_set_header Connection "";
+    proxy_set_header Host $http_host;
+    proxy_set_header X-Real-IP $remote_addr;
+    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+    proxy_set_header X-Forwarded-Proto $scheme;
+    proxy_set_header X-Frame-Options SAMEORIGIN;
+    proxy_buffers 256 16k;
+    proxy_buffer_size 16k;
+    proxy_read_timeout 600s;
+    # proxy_cache mattermost_cache;
+    proxy_cache_revalidate on;
+    proxy_cache_min_uses 2;
+    proxy_cache_use_stale timeout;
+    proxy_cache_lock on;
+    proxy_http_version 1.1;
+    proxy_pass http://localhost:8065;
+  }
+  location ~ /chat/api/v[0-9]+/(users/)?websocket$ {
     proxy_set_header Upgrade $http_upgrade;
     proxy_set_header Connection "upgrade";
     client_max_body_size 50M;