diff options
Diffstat (limited to 'nix/hosts/corrino/www/ctf.emile.space.nix')
-rw-r--r-- | nix/hosts/corrino/www/ctf.emile.space.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/nix/hosts/corrino/www/ctf.emile.space.nix b/nix/hosts/corrino/www/ctf.emile.space.nix index c4de8c5..5c9d49a 100644 --- a/nix/hosts/corrino/www/ctf.emile.space.nix +++ b/nix/hosts/corrino/www/ctf.emile.space.nix @@ -1,13 +1,15 @@ { ... }: -{ +let + ports = import ../ports.nix; +in { services.nginx.virtualHosts."ctf.emile.space" = { forceSSL = true; enableACME = true; locations = { "/" = { - proxyPass = "http://127.0.0.1:8338"; + proxyPass = "http://127.0.0.1:${toString ports.ctf}"; }; }; }; @@ -18,7 +20,7 @@ "ctfd" = { image = "ctfd/ctfd"; ports = [ - "8338:8000" + "${toString ports.ctf}:8000" ]; }; }; |