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/magic-hash.emile.space.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'nix/hosts/corrino/www/magic-hash.emile.space.nix') diff --git a/nix/hosts/corrino/www/magic-hash.emile.space.nix b/nix/hosts/corrino/www/magic-hash.emile.space.nix index 05446ea..4f57d12 100644 --- a/nix/hosts/corrino/www/magic-hash.emile.space.nix +++ b/nix/hosts/corrino/www/magic-hash.emile.space.nix @@ -1,13 +1,15 @@ { config, ... }: -{ +let + ports = import ../ports.nix; +in { services.nginx.virtualHosts."magic-hash.emile.space" = { forceSSL = true; enableACME = true; locations = { "/" = { - proxyPass = "http://127.0.0.1:8339"; + proxyPass = "http://127.0.0.1:${toString ports.magic-hash}"; }; }; }; @@ -18,7 +20,7 @@ "ctfd" = { image = "magic-hash"; ports = [ - "8338:80" + "${toString ports.magic-hash}:80" ]; environment = { -- cgit 1.4.1