From 09edb5202ad52e6fbf9580683a0a0c4b85e3cfe8 Mon Sep 17 00:00:00 2001 From: sefidel Date: Thu, 7 Mar 2024 20:39:34 +0900 Subject: fix(modules/expose): fix cloudflare tunnel This commit fixes cloudflare tunnel connections failing with `tls: unrecognized name`, which was caused by the https endpoint not having a valid certificate for 'localhost'. --- nixos/kanata/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos') diff --git a/nixos/kanata/configuration.nix b/nixos/kanata/configuration.nix index a64ecf8..323f6ac 100644 --- a/nixos/kanata/configuration.nix +++ b/nixos/kanata/configuration.nix @@ -163,7 +163,7 @@ in # Nginx pre-configured routes "nextcloud.kusanari.network" = { - to = "https://localhost:443"; + to = "http://localhost:80"; configureNginx = false; }; }; -- cgit 1.4.1