about summary refs log tree commit diff
path: root/nixos/cobalt/services/nginx.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/cobalt/services/nginx.nix')
-rw-r--r--nixos/cobalt/services/nginx.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/nixos/cobalt/services/nginx.nix b/nixos/cobalt/services/nginx.nix
deleted file mode 100644
index cb5ced3..0000000
--- a/nixos/cobalt/services/nginx.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  services.nginx = {
-    enable = true;
-
-    recommendedGzipSettings = true;
-    recommendedOptimisation = true;
-    recommendedTlsSettings = true;
-  };
-
-  users.extraUsers.nginx.extraGroups = [ "acme" ];
-
-  imports = [
-    ./acme.nix
-  ];
-}