mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-04-25 17:25:57 +03:00
[GH-ISSUE #197] When https is enable port for rocket should be 443 #98
Labels
No labels
SSO
Third party
better for forum
bug
bug
documentation
duplicate
enhancement
future Vault
future Vault
future Vault
good first issue
help wanted
low priority
notes
pull-request
question
troubleshooting
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vaultwarden#98
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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 (Sep 24, 2018).
Original GitHub issue: https://github.com/dani-garcia/vaultwarden/issues/197
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
@mprasil commented on GitHub (Sep 24, 2018):
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.
@ghost commented on GitHub (Sep 24, 2018):
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 (Sep 24, 2018):
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.