From 47eb3316018f21419dc8a52f2a9b9d81a2ce1071 Mon Sep 17 00:00:00 2001 From: Jarkko Toivanen Date: Tue, 2 May 2023 18:23:35 +0300 Subject: [PATCH] Disabling https --- nixos/leena/configuration.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nixos/leena/configuration.nix b/nixos/leena/configuration.nix index aeed076..cf982c8 100644 --- a/nixos/leena/configuration.nix +++ b/nixos/leena/configuration.nix @@ -78,17 +78,13 @@ apiTokenFile = "/home/jt/conf/cloudflare.token"; }; networking.firewall.enable = true; - networking.firewall.allowedTCPPorts = [ 80 443 ]; + networking.firewall.allowedTCPPorts = [ 80 ]; # networking.firewall.allowedUDPPorts = [ ... ]; - #security.acme.acceptTerms = true; - #security.acme.defaults.email = ""; services.nginx = { enable = true; virtualHosts = { "leena.jakest.us" = { - addSSL = true; - #enableACME = true; root = "/var/www/leena.jakest.us"; }; };