diff --git a/modules/server/nginx.nix b/modules/server/nginx.nix index 8e53417..79d9c9a 100644 --- a/modules/server/nginx.nix +++ b/modules/server/nginx.nix @@ -12,10 +12,15 @@ with lib; { services.nginx.enable = true; networking.firewall.allowedTCPPorts = [80 443]; services.nginx.virtualHosts."localhost" = { - addSSL = true; - enableACME = true; + addSSL = false; + enableACME = false; root = "/var/www/localhost"; default = true; }; + services.nginx.virtualHosts."ellmauthaler.net" = { + addSSL = true; + enableACME = true; + root = "/var/www/localhost"; + }; }; }