mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
Mail invitation localhost #438
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 @shd128 on GitHub (Oct 8, 2019).
Hi, I'm having an issue with the email invitation.
The mail is sent correctly but in the "Join Organization Now" button the link goes to localhost, not my server's IP adress.
I already changed "localhost" for mi server ip and port in /root/bitwarden_rs-1.8.0/src/config.rs
/// General settings
settings {
/// Domain URL |> This needs to be set to the URL used to access the server, including 'http[s]://'
/// and port, if it's different than the default. Some server functions don't work correctly without this value
domain: String, true, def, "http://XXX.XXX.XXX.XXX:8000".to_string();
Am I missing something?
@BlackDex commented on GitHub (Oct 8, 2019):
@shd128, i wonder why you changed those settings in the source and not the .env file, or via the docker run -e options.
If you changed and compiled the source, then i think something is overwriting that with some other option either within the
docker run -eorconfig.json.To be sure, check http://your-domain.com:8000/admin and see what the current loaded settings are.
@shd128 commented on GitHub (Oct 8, 2019):
BlackDex, I changed the Domain URL under General Setting and that did the
trick.
Thanks!
El mar., 8 oct. 2019 a las 8:57, BlackDex (notifications@github.com)
escribió:
--
Lic. Sabrina Lanzotti
@dani-garcia commented on GitHub (Oct 8, 2019):
Nice to know that fixed it, I think we can close this now.