From 439a0cf1f008d2485f8fe2c4369732a3a967680e Mon Sep 17 00:00:00 2001 From: Dennis Date: Fri, 25 Apr 2025 16:27:04 +0200 Subject: [PATCH] Fixes port for vaultwarden --- hosts/dnsc-vps-sm/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/dnsc-vps-sm/default.nix b/hosts/dnsc-vps-sm/default.nix index b7676fb..e93c2f6 100644 --- a/hosts/dnsc-vps-sm/default.nix +++ b/hosts/dnsc-vps-sm/default.nix @@ -96,6 +96,9 @@ # Tailscale services.tailscale.enable = true; + # Vaultwarden + services.vaultwarden.enable = true; + # Caddy services.caddy = { enable = true; @@ -115,13 +118,10 @@ root * /var/www/slides ''; virtualHosts."vault.dnsc.io".extraConfig = '' - reverse_proxy :8000 + reverse_proxy :8222 ''; }; - # Vaultwarden - services.vaultwarden.enable = true; - # Environment variables environment.variables.EDITOR = "nvim";