From fc7c524e0b1278815c2303c44381a15e002b13e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sun, 11 Aug 2024 12:16:40 +0200 Subject: [PATCH] fix(sourcehut): use http for origin Maybe this will force sourcehut to use http instad of https, which will allow me to sidestep the certificate problem? --- nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index dcb60e7..8bc923e 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -260,7 +260,7 @@ in "sr.ht" = { environment = "production"; global-domain = "${sourcehut-fqdn}"; - origin = "https://${sourcehut-fqdn}"; + origin = "http://${sourcehut-fqdn}"; network-key = "/etc/nixos/secrets/sourcehut/network.key"; service-key = "/etc/nixos/secrets/sourcehut/service.key"; };