From cdb217550dd5824d9bb5677338f49ecf19ea7e79 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Fri, 27 Dec 2024 19:56:04 +0200 Subject: [PATCH] Retrying --- nginx.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nginx.nix b/nginx.nix index 092d201..ae900e0 100644 --- a/nginx.nix +++ b/nginx.nix @@ -3,7 +3,8 @@ enable = true; virtualHosts."kyren.codes" = { forceSSL = true; - enableACME = true; + # enableACME = true; + useACMEHost = "kyren.codes"; locations."/" = { proxyPass = "http://localhost:80"; }; @@ -43,5 +44,5 @@ }; }; - networking.firewall.allowedTCPPorts = [ 80 3000 ]; + networking.firewall.allowedTCPPorts = [ 443 80 ]; }