Replies: 9 comments 2 replies
-
Hello @rbdevr,
When you start bitwarden you should see which port it run's on, and also which IP. |
Beta Was this translation helpful? Give feedback.
-
I did manage to get the error sorted by turning off SSL on bitwarden service. Now I dont get an error from apache but the website still isnt working. I'm getting a small box written “bitwarden”. It seems not all resources are coming with the correct URL. GET http://myserver/app/main.cd3fdd91e1a63cf3ead5.css [HTTP/1.1 404 Not Found 7ms] This shouldnt be happening because of the DOMAIN variable correct? Anyone facing this issue? Cheers |
Beta Was this translation helpful? Give feedback.
-
I have similar setup, but I configured
Only thing which doesn't work is notifications hub - getting 502 error. |
Beta Was this translation helpful? Give feedback.
-
Remember to enable Regarding the |
Beta Was this translation helpful? Give feedback.
-
Same problem here, I always get a 502 error. When I call
If I use With the mobile app (Android version 2.6.1) I always get for both urls the error:
Too bad, would like to use Bitwarden, but can't find a solution. Installed bitwarden_rs without Docker on Linux Ubuntu 20.10 .env settings
bitwarden_rs start info
|
Beta Was this translation helpful? Give feedback.
-
can we have some assistance from the team? maybe a template to setup Apache and BitWarden via subpath? it's been 4 months and this issue is still happening...... |
Beta Was this translation helpful? Give feedback.
-
You might be improperly configuring bitwarden_rs to expect HTTPS connections. If you're running behind a reverse proxy, the reverse proxy should be handling SSL/TLS termination, so bitwarden_rs should not have the BTW, if there's a "team" at bitwarden_rs, it's very small and basically unpaid, so there's just not enough people to handhold users through every configuration they might want to use. People who want to self-host do need to take responsibility for learning about the systems they're using to do that. |
Beta Was this translation helpful? Give feedback.
-
I've tried using your proxy example, it was the first thing I did and it didn't work. I've added all the details here so that others could replicate and help fix this and others with the same issue could find a solution. Thats what a forum is for. In regards to apache, most linux users will be using it, so have some support for it makes sense. hopefully we can find a way to sort it out. cheers |
Beta Was this translation helpful? Give feedback.
-
I have following setup - seems to be working:
Apache (virtualserver conf):
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
Im trying to configure BitWarden to run behind an Apache server as a subpath
https://myserver/bitwarden
The service is running as localhost:3743
I followed the proxy example in the wiki but I keep getting proxy error:
502 Proxy Error
The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /bitwarden .
Reason: Error reading from remote server
I have tried the following setting:
environment variable:
DOMAIN=https://myserver/bitwarden
ROCKET_PORT=3743
ROCKET_TLS='{certs="",key=""}
apache config:
<Location /bitwarden>
RewriteEngine On
RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule /notifications/hub(.*) ws://localhost:3012/$1 [P,L]
ProxyPass http://localhost:3743
ProxyPreserveHost On
RequestHeader set X-Real-IP %{REMOTE_ADDR}s
</Location
Any assistance would be appreciated
Cheers
Beta Was this translation helpful? Give feedback.
All reactions