Make sure there is encryption on all chanels:
Make sure websockets also operate on a secure chanel
Nginx config looks like this
location /api { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://expressapp; proxy_redirect off; } location /socket { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_http_version 1.1; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; proxy_pass http://127.0.0.1:3001; }
No dependencies set.
The note is not visible to the blocked user.
Make sure there is encryption on all chanels:
Make sure websockets also operate on a secure chanel
Nginx config looks like this