From d69bf463cc1fde2a214b46e22158d191cd7bc1fd Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 1 Oct 2023 13:50:57 -0600 Subject: [PATCH] [NixOS] Try to forceSSL --- nixos/gitea.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/gitea.nix b/nixos/gitea.nix index af380177..572cc053 100644 --- a/nixos/gitea.nix +++ b/nixos/gitea.nix @@ -20,12 +20,12 @@ makeEnable config "modules.gitea" false { "gitea" = { serverName = "1896Folsom.duckdns.org"; enableACME = true; + forceSSL = true; listen = [{ addr = "0.0.0.0"; port = 3001; + ssl = true; }]; - # enableACME = true; - # forceSSL = true; locations."/" = { proxyPass = "http://localhost:3000"; };