From cb20d078360ec9235b9b3a78d7950ded1f601267 Mon Sep 17 00:00:00 2001 From: Emile Date: Tue, 26 Mar 2024 10:30:12 +0100 Subject: ports.nix file containing the used ports in a central location Done and deployed in the 15min train ride to the office, quick and easy! --- nix/hosts/corrino/www/git.emile.space.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'nix/hosts/corrino/www/git.emile.space.nix') diff --git a/nix/hosts/corrino/www/git.emile.space.nix b/nix/hosts/corrino/www/git.emile.space.nix index dceadb6..f05c83d 100644 --- a/nix/hosts/corrino/www/git.emile.space.nix +++ b/nix/hosts/corrino/www/git.emile.space.nix @@ -2,6 +2,7 @@ let cfg = config.services.gitea; + ports = import ../ports.nix; authelia-location = '' set $upstream_authelia http://127.0.0.1:9091/api/authz/auth-request; @@ -81,7 +82,8 @@ in { locations = { "/" = { - proxyPass = "http://127.0.0.1:3000"; + # proxyPass = "http://127.0.0.1:3000"; + proxyPass = "http://127.0.0.1:${toString config.services.gitea.settings.server.HTTP_PORT}"; # TODO(emile): figure out why this doesn't work when enabled, has to do with authelia # extraConfig = authelia-authrequest; @@ -131,6 +133,7 @@ in { server = { DOMAIN = pkgs.lib.mkForce "git.emile.space"; ROOT_URL = pkgs.lib.mkForce "https://git.emile.space"; + HTTP_PORT = ports.git; #START_SSH_SERVER = true; BUILTIN_SSH_SERVER_USER = "git"; -- cgit 1.4.1