summary refs log tree commit diff stats
path: root/system/services/nginx
diff options
context:
space:
mode:
Diffstat (limited to 'system/services/nginx')
-rw-r--r--system/services/nginx/default.nix12
-rw-r--r--system/services/nginx/hosts.nixbin0 -> 630 bytes
2 files changed, 4 insertions, 8 deletions
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";
-      };
-    };
   };
 }
diff --git a/system/services/nginx/hosts.nix b/system/services/nginx/hosts.nix
new file mode 100644
index 0000000..684bb68
--- /dev/null
+++ b/system/services/nginx/hosts.nix
Binary files differ