dotfiles/roles/vaultwarden/templates/vaultwarden.ini
Matej Focko 02b44273db
fix(vaultwarden): bump ROCKET_WORKERS
This variable was not required when running from the user-space, but
after migrating to quadlets, I had to define it.

Just to satisfy the requirements, I set it to 1. Based on some docs I
have managed to find, it appears that the default is 10. Given the
amount of users of my deployment and the fact it's running on the VPS,
setting it to 8.

Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-11-14 17:52:36 +01:00

15 lines
497 B
INI

DATABASE_URL=postgresql://{{ vaultwarden_db_user }}:{{ vaultwarden_db_pass | urlencode }}@{{ vaultwarden_db_host }}/{{ vaultwarden_db_name }}
DOMAIN=https://{{ vaultwarden_address }}
PUSH_ENABLED=true
PUSH_INSTALLATION_ID={{ vaultwarden_push_installation_id }}
PUSH_INSTALLATION_KEY={{ vaultwarden_push_installation_key }}
WEBSOCKET_ENABLED=true
YUBICO_CLIENT_ID={{ vaultwarden_yubico_client_id }}
YUBICO_SECRET_KEY={{ vaultwarden_yubico_secret_key }}
# dunno why, but ok…
ROCKET_WORKERS=8