about summary refs log tree commit diff
path: root/users/sterni/machines/edwin/http/nginx.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/sterni/machines/edwin/http/nginx.nix')
-rw-r--r--users/sterni/machines/edwin/http/nginx.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/users/sterni/machines/edwin/http/nginx.nix b/users/sterni/machines/edwin/http/nginx.nix
deleted file mode 100644
index 7c99cdd150e0..000000000000
--- a/users/sterni/machines/edwin/http/nginx.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ ... }:
-
-{
-  config = {
-    users = {
-      users.http = {
-        isSystemUser = true;
-        group = "http";
-      };
-
-      groups.http = { };
-    };
-
-    services.nginx = {
-      enable = true;
-      recommendedTlsSettings = true;
-      recommendedGzipSettings = true;
-      recommendedProxySettings = true;
-
-      user = "http";
-      group = "http";
-
-      appendHttpConfig = ''
-        charset utf-8;
-      '';
-    };
-  };
-}