Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2025-07-16 19:25:32 +02:00
parent 8e37b228a0
commit bb2993b125
18 changed files with 150 additions and 147 deletions
+5 -4
View File
@@ -1,5 +1,6 @@
{ config, ... }:
let domain = "vault.hadi.diy";
# Bitwarden (or vaultwarden) is a self-hosted password manager.
{config, ...}: let
domain = "vault.hadi.diy";
in {
services = {
vaultwarden = {
@@ -18,8 +19,8 @@ in {
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${
toString config.services.vaultwarden.config.ROCKET_PORT
}";
toString config.services.vaultwarden.config.ROCKET_PORT
}";
};
};
};