From 09d9b3a17289f1377dc09240fc59ed13e37f2228 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 2 Apr 2024 13:53:25 +0200 Subject: [PATCH] disable: tunnel becouse it prevented acme --- tunnel.nix | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tunnel.nix b/tunnel.nix index cb34469..cc3730d 100644 --- a/tunnel.nix +++ b/tunnel.nix @@ -3,19 +3,19 @@ services.nginx = { enable = true; clientMaxBodySize = "10g"; - defaultHTTPListenPort = 1234; + # defaultHTTPListenPort = 1234; }; services.cloudflared = { - enable = true; - tunnels = { - "tulpan" = { - credentialsFile = "/etc/nixos/.secrets/tulpan-tunnel.json"; - default = "http_status:404"; - ingress = { - "*.sondell.org" = "http://localhost:1234"; - "sondell.org" = "http://localhost:1234"; - }; - }; - }; + enable = false; + # tunnels = { + # "tulpan" = { + # credentialsFile = "/etc/nixos/.secrets/tulpan-tunnel.json"; + # default = "http_status:404"; + # ingress = { + # "*.sondell.org" = "http://localhost:1234"; + # "sondell.org" = "http://localhost:1234"; + # }; + # }; + # }; }; }