From d4b710d0ce3e6e1642e7658971da62c3a1476236 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 17 Jun 2023 21:10:57 +0200 Subject: Fix(system/services/nginx): Switch to git-sync --- system/services/nginx/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'system/services/nginx/default.nix') diff --git a/system/services/nginx/default.nix b/system/services/nginx/default.nix index 406f2a1..6753fb0 100644 --- a/system/services/nginx/default.nix +++ b/system/services/nginx/default.nix @@ -1,15 +1,11 @@ -{websites, ...}: { +{...}: { + imports = [ + ./hosts.nix + ]; networking.firewall = { allowedTCPPorts = [80 443]; }; services.nginx = { enable = true; - virtualHosts = { - "vhack.eu" = { - forceSSL = true; - enableACME = true; - root = "${websites}/websites/vhack.eu"; - }; - }; }; } -- cgit 1.4.1