From 6417445a8e0c619e44ce9ec76cbcc273ae4e3767 Mon Sep 17 00:00:00 2001 From: Tom Date: Wed, 7 Aug 2024 22:29:16 +0200 Subject: [PATCH] Update configuration.nix --- configuration.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/configuration.nix b/configuration.nix index 4bb1814..c458f65 100644 --- a/configuration.nix +++ b/configuration.nix @@ -75,10 +75,12 @@ services.nginx = { enable = true; - virtualHosts."git.blubb.fish" = { - addSSL = true; - enableACME = true; - locations."/".proxyPass = "http://10.0.0.24:3000/"; + virtualHosts = { + "git.blubb.fish" = { + addSSL = true; + enableACME = true; + locations."/".proxyPass = "http://10.0.0.24:3000/"; + }; }; };