From 02b44273dbc8b998fe6c5c1a331230a7dab4cf58 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Thu, 14 Nov 2024 17:52:36 +0100 Subject: [PATCH] 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 --- roles/vaultwarden/templates/vaultwarden.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/vaultwarden/templates/vaultwarden.ini b/roles/vaultwarden/templates/vaultwarden.ini index d9dcb1d..44fdd36 100644 --- a/roles/vaultwarden/templates/vaultwarden.ini +++ b/roles/vaultwarden/templates/vaultwarden.ini @@ -12,4 +12,4 @@ YUBICO_CLIENT_ID={{ vaultwarden_yubico_client_id }} YUBICO_SECRET_KEY={{ vaultwarden_yubico_secret_key }} # dunno why, but ok… -ROCKET_WORKERS=1 +ROCKET_WORKERS=8