mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-08-27 05:35:03 -05:00
[GH-ISSUE #7103] Misconfigured Push Notification service even with correct EU region endpoints in config.json #30105
Reference in New Issue
Block a user
Originally created by @fiorindo-carlini on GitHub (Apr 16, 2026).
Original GitHub issue: https://github.com/dani-garcia/vaultwarden/issues/7103
Prerequisites
Vaultwarden Support String
I am unable to start Vaultwarden with Push Notifications enabled. Even though I have correctly configured the installation ID and Key obtained from the .eu Bitwarden portal and set the corresponding EU endpoints, the server fails to boot with the "Misconfigured Push Notification service" error.
Error loading config:
vaultwarden | Misconfigured Push Notification service
vaultwarden | ########################################################################################
vaultwarden | # It looks like you enabled Push Notification feature, but didn't configure it #
vaultwarden | # properly. Make sure the installation id and key from https://bitwarden.com/host are #
vaultwarden | # added to your configuration. #
vaultwarden | ########################################################################################
{
"push_enabled": true,
"push_id": "b88fdsdfdsfsdfff6-b4sfsdf8d",
"push_key": "qssdfsdfsdfsdfM7sdfdsfe",
"push_relay_uri": "https://push.bitwarden.eu",
"push_identity_uri": "https://identity.bitwarden.eu"
}
any idea?
Thank you
Vaultwarden Build Version
2026.1.1
Deployment method
Official Container Image
Custom deployment method
No response
Reverse Proxy
Caddy
Host/Server Operating System
Linux
Operating System Version
Ubuntu
Clients
Web Vault
Client Version
No response
Steps To Reproduce
Expected Result
.
Actual Result
.
Logs
Screenshots or Videos
No response
Additional Context
No response
@stefan0xC commented on GitHub (Apr 16, 2026):
Well, the error message is triggered by
https://github.com/dani-garcia/vaultwarden/blob/dfebee57ec26837f82d8a883c9fadd026fe8aeac/src/config.rs#L1001-L1010
So you did not configure it correctly.
Where did you configure those values? There is no configuration option called
push_idorpush_key. Also forbitwarden.eu (European Union)it should bePUSH_RELAY_URI=https://api.bitwarden.eu.Cf. https://github.com/dani-garcia/vaultwarden/wiki/Enabling-Mobile-Client-push-notification
@fiorindo-carlini commented on GitHub (Apr 16, 2026):
Thanks a lot, it worked. I don’t remember where I got them probably from some unofficial documentation. I was convinced they were the correct keys.