diff options
Diffstat (limited to 'configuration/snorlax/nginx.nix')
-rw-r--r-- | configuration/snorlax/nginx.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/configuration/snorlax/nginx.nix b/configuration/snorlax/nginx.nix deleted file mode 100644 index cc38496..0000000 --- a/configuration/snorlax/nginx.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ ... }: -{ - networking.firewall.allowedTCPPorts = [ 443 ]; - - services.nginx = { - enable = true; - recommendedTlsSettings = true; - - virtualHosts = { - "jras.nl" = { - onlySSL = true; - kTLS = true; - enableACME = true; - root = "/srv/www/jras.nl"; - }; - }; - }; - - security.acme.defaults.email = "jaspert.ras@gmail.com"; - security.acme.acceptTerms = true; -} |