@Pramvir-Rathee here is my current Nginx config for the site.
server { client_max_body_size 40M; listen 443 ssl; server_name community.bundystl.com; ssl on; ssl_certificate /etc/letsencrypt/live/bundystl.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/bundystl.com/privkey.pem; ssl_stapling on; ssl_stapling_verify on; ssl_protocols TLSv1.2 TLSv1.1 TLSv1; ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH'; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_dhparam /etc/ssl/certs/dhparam.pem; add_header Strict-Transport-Security "max-age=31536000; includeSubdomains"; location / { 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 Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://10.254.0.35:4567; proxy_redirect off; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } } server { client_max_body_size 40M; listen 80; server_name community.bundystl.com; rewrite ^ https://$server_name$request_uri? permanent; }New Bug Hit This Morning in Chat (1.10.2)
-
Happened on the MangoLassi community. Appears to have happened in someone's chat session. The result didn't bring down the forum, but did break some things like quotes and replies and we could no longer find the end of threads. But mostly the forum was intact. A restart fixed everything, and we've never seen this bug before. But didn't want to fail to report it, either.
We are on NodeBB 1.10.2, all plugins fully up to date (and very few in general), and NodeJS 10.8.0.
2018-11-02T15:50:41.288Z [14501] - error: /user/donahue/chats/2255 Error: [[error:no-privileges]] at /opt/mangolassi-1.0/src/controllers/accounts/chats.js:34:17 at nextTask (/opt/mangolassi-1.0/node_modules/async/dist/async.js:5324:14) at next (/opt/mangolassi-1.0/node_modules/async/dist/async.js:5331:9) at /opt/mangolassi-1.0/node_modules/async/dist/async.js:969:16 at /opt/mangolassi-1.0/node_modules/async/dist/async.js:2806:17 at /opt/mangolassi-1.0/node_modules/async/dist/async.js:473:16 at iteratorCallback (/opt/mangolassi-1.0/node_modules/async/dist/async.js:1064:13) at /opt/mangolassi-1.0/node_modules/async/dist/async.js:969:16 at Immediate._onImmediate (/opt/mangolassi-1.0/node_modules/async/dist/async.js:2799:21) at runCallback (timers.js:694:11) at tryOnImmediate (timers.js:664:5) at processImmediate (timers.js:646:5)