From 0e291d3388c72049d9828d05fdd97d64a700ad38 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Wed, 19 Jun 2024 23:28:50 +0200 Subject: [PATCH] Update --- hosts/modules/server/vaultwarden.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/modules/server/vaultwarden.nix b/hosts/modules/server/vaultwarden.nix index 8abd44c..d823e3a 100644 --- a/hosts/modules/server/vaultwarden.nix +++ b/hosts/modules/server/vaultwarden.nix @@ -16,7 +16,7 @@ in { }; services.nginx.virtualHosts.${hostname} = { enableACME = true; - locations."/" = { proxyPass = "http://127.0.0.1:${port}"; }; + locations."/" = { proxyPass = "http://127.0.0.1:${toString port}"; }; }; networking.firewall.allowedTCPPorts = [ port ]; }