summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-10-14 15:11:12 +0200
committerSoispha <soispha@vhack.eu>2023-10-14 16:34:13 +0200
commitd7190a42e35c153454d328bb167ef066ea42901d (patch)
tree82d4954ea017b7285e261d33293c8f327750775c
parentFeat(system/services/redirects): Build up the base to comply with the AGPL (diff)
downloadnixos-server-d7190a42e35c153454d328bb167ef066ea42901d.tar.gz
nixos-server-d7190a42e35c153454d328bb167ef066ea42901d.zip
fix(system/services/redirects): disable ssl
Diffstat (limited to '')
-rw-r--r--system/services/redirects/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/services/redirects/default.nix b/system/services/redirects/default.nix
index 0f66e2b..2e175ea 100644
--- a/system/services/redirects/default.nix
+++ b/system/services/redirects/default.nix
@@ -5,8 +5,8 @@
       # Redirect all request to the codeberg source
       locations."/".return = "301 https://codeberg.org/vhack.eu/nixos-server";
 
-      enableACME = true;
-      forceSSL = true;
+      enableACME = false;
+      forceSSL = false;
     };
   };
 }