mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-12-09 09:13:02 +03:00
When https is enable port for rocket should be 443 #2316
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 @ghost on GitHub.
Instead of
Should be
In current implementation I have to use port 80 for https connection when using mcvilan network in my bitwarden docker container.
https://192.168.0.10:80
@ghost commented on GitHub:
That helps when connecting from desktop and google chrome but can't connect from ios (safari) and ios mobile bitwarden app:
https://github.com/dani-garcia/bitwarden_rs/issues/198
@mprasil commented on GitHub:
I suspect there's some other issue there. I've closed this issue as this was related to setting the correct port with macvlan, we can troubleshoot the rest under #198.
@mprasil commented on GitHub:
Hi, the port does not change when you enable TLS, so the port forward in the example is correct - you need to forward internal port
80to external (host) port443. In your specific case with macvlan this obviously won't work as there is no port mapping used in that setup.To resolve your problem, you can set
ROCKET_PORTto443and that will let bitwarden listen on the required port in your configuration. You also need to remove the port mapping:Hope that helps.