mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
All requests give 404 response from Rocket server #628
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Carl-RTP on GitHub (Mar 2, 2020).
Subject of the issue
Updated image for my docker container and since then every request to the server results in a 404.
Can't load the web vault, can't sync clients.
Your environment
1.13.1-edfdda86
Docker via OMV4 docker plugin with image: bitwardenrs/server:armv6
BitWarden Chrome extension & Android Application.
Using Apache, looks like this:
With assigned port mapped to :80 on docker container.
Steps to reproduce
Difficult to say, not sure of the cause, but from a working setup all I changed was the docker image to latest armv6 to then have OMV report it unhealthy and all requests 404.
Unsure of what version was before, but looking at the releases it was probably 1.13.1 also..? as it was set up initially on Feb 3rd (so is probably the
f5916ecbuild that worked) and the most recent release was Jan 5th, so I don't know what differs in the docker image that would cause the issue.Relevant logs
Every line following is the same
[response][INFO] 404 Not Found@jjlin commented on GitHub (Mar 2, 2020):
Likely related to https://github.com/dani-garcia/bitwarden_rs/wiki/Using-an-alternate-base-dir. You probably just need to use
AFAICT, you can now drop the
ProxyPassReverse, but I'm not particularly familiar with using Apache httpd as a reverse proxy.@Carl-RTP commented on GitHub (Mar 2, 2020):
That solved it!
Was not aware of that being changed, but it's all good now.
I also had
set to have the web vault work in the folder, but have now removed that since it's no longer necessary 👍
Thanks!