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"; + # }; + # }; + # }; }; }