From c79262d95c21f9db641a7a473c9e51b6d3e3e4f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sun, 11 Aug 2024 12:24:38 +0200 Subject: [PATCH] fix(sourcehut): try and make it use http for internal communication None of my previous changes could have worked, because nginx automatically redirects http to https. I think this is the setting I need to change so that pure http works as well. --- nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index de06bf2..fdf213b 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -304,7 +304,7 @@ in services.nginx = { enable = true; - recommendedTlsSettings = true; + recommendedTlsSettings = false; recommendedOptimisation = true; recommendedGzipSettings = true; recommendedProxySettings = true;