Hello,
When I do what you said in mu quote, I’ve got the same message as you.
But my websocket is working fine. When I modify a secure note or whatever, the changes are automaticaly synchronised in my browsers extensions.
My reversproxy config has some more lines…
And the Location /notifications/hub {
and location /notifications/hub/negotiate {
blocs are after the
location / {
bloc…
My location / {
bloc looks like :
location / {
proxy_connect_timeout 300;
proxy_read_timeout 300;
proxy_send_timeout 300;
proxy_intercept_errors off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://local_IP:port;
}
PS : I have Vaultwarden installed in Docker on a Synology NAS (with DSM7).
See this post : [SOLVED] Websocket setup on Synology - #16 by MilesTEG1