From c1e4547e478abfec12abe02a311f2f742b5baa1e Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Wed, 12 Oct 2022 09:52:51 +0200 Subject: [PATCH] Added linkal module --- modules/linkal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/linkal/default.nix b/modules/linkal/default.nix index 8ef4653..d5178cd 100644 --- a/modules/linkal/default.nix +++ b/modules/linkal/default.nix @@ -2,7 +2,7 @@ with lib; let cfg = config.luj.linkal; - port = 4145; + port = 8443; in { @@ -25,7 +25,7 @@ in enableACME = true; forceSSL = true; locations."/" = { - proxyPass = "http://localhost:${toString port}"; + proxyPass = "http://localhost:${toString port}/"; }; };