diff options
Diffstat (limited to 'nix')
-rw-r--r-- | nix/hosts/wildcat/configuration.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nix/hosts/wildcat/configuration.nix b/nix/hosts/wildcat/configuration.nix index c4c50c5..23ac05f 100644 --- a/nix/hosts/wildcat/configuration.nix +++ b/nix/hosts/wildcat/configuration.nix @@ -14,7 +14,12 @@ services.nginx = { enable = true; + recommendedProxySettings = true; + recommendedGzipSettings = true; + recommendedOptimisation = true; + recommendedTlsSettings = true; + virtualHosts = { "fcuny.net" = { addSSL = true; @@ -23,6 +28,9 @@ "/" = { root = "/srv/www/fcuny.net"; }; + "/.well-known/acme-challenge" = { + root = "/var/lib/acme/.challenges"; + }; }; }; }; |