Hello,
This has been a persistent issue since I’ve been using vaultwarden; around a year or more.
It seems to happen more often with other user accounts, at first but now it seems consistent with all.
After logging in, the loading icon just spins and nothing more happens.
Eventually it seems I can trick it into logging in through a series of refreshes and logins - sometimes takes a long time to do that though or it doesn’t work at all and i try again later.
I of course have tried many browsers and devices, this is a persistent and pervasive issue.
Logins always work through the app or browser extension, this issue is only specific to web.
There’s no errors in the server logs.
I’m attaching what the console looks like though, it might be of interest…
This is run from a docker container and nginx reverse proxy. (perhaps I’m missing a setting for the proxy?)
server {
listen 80;
listen 443 ssl;
server_name vault.lan;
if ($scheme != "https") {
return 301 https://$server_name$request_uri;
}
location / {
proxy_pass http://vaultwarden:80;
proxy_set_header Host $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;
# Important for CORS
proxy_set_header Origin "";
# Longer timeouts for API
proxy_read_timeout 90;
proxy_send_timeout 90;
}
# WebSocket support for notifications
location /notifications/hub {
proxy_pass http://vaultwarden:80;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $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;
}
}
Thank you in advance,