Hello,
I am self hosting a Vaultwarden instance. I am running it as follows:
docker run -d --name vaultwarden -v /vw-data/:/data/ -e ROCKET_PORT=8088 -e DOMAIN=https://<MY DOMAIN> -e WEBSOCKET_ENABLED=true -p 8088:8088 -e WEBSOCKET_ADDRESS=127.0.0.1 -e DOMAIN_ORIGIN=https://<MY_DOMAIN> vaultwarden/server:latest
When I try accessing it through a Web browser, I get a loading page that never ends. Or a blank page with only “Bitwarden” written.
I checked the docker logs and I get this:
/--------------------------------------------------------------------\
| Starting Vaultwarden |
| Version 1.27.0 |
|--------------------------------------------------------------------|
| This is an *unofficial* Bitwarden implementation, DO NOT use the |
| official channels to report bugs/features, regardless of client. |
| Send usage/configuration questions or feature requests to: |
| https://vaultwarden.discourse.group/ |
| Report suspected bugs/issues in the software itself at: |
| https://github.com/dani-garcia/vaultwarden/issues/new |
\--------------------------------------------------------------------/
[INFO] No .env file found.
[WARNING] The following environment variables are being overriden by the config file,
[WARNING] please use the admin panel to make changes to them:
[WARNING] DOMAIN
[2023-01-09 13:51:56.557][vaultwarden::api::notifications][INFO] Starting WebSockets server on 127.0.0.1:3012
[2023-01-09 13:51:56.559][start][INFO] Rocket has launched from http://0.0.0.0:8088
Everything is green in the diagnostic page. The instance worked just fine until yesterday and I didn’t change anything in particular.
Does anybody know what the problem may come from?
Thanks!