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/talks.emile.space.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'nix/hosts/corrino/www/talks.emile.space.nix') diff --git a/nix/hosts/corrino/www/talks.emile.space.nix b/nix/hosts/corrino/www/talks.emile.space.nix index 4833fa7..80c264e 100644 --- a/nix/hosts/corrino/www/talks.emile.space.nix +++ b/nix/hosts/corrino/www/talks.emile.space.nix @@ -1,6 +1,7 @@ { config, pkgs, ... }: let + ports = import ../ports.nix; pretalx_config = pkgs.writeText "/etc/pretalx.cfg" '' [filesystem] media = /public/media @@ -42,7 +43,7 @@ in { locations = { "/" = { extraConfig = '' - proxy_pass http://127.0.0.1:8350; + proxy_pass http://127.0.0.1:${toString ports.talks}; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; @@ -61,7 +62,7 @@ in { pretalx = { image = "pretalx/standalone:latest"; ports = [ - "127.0.0.1:8350:80" + "127.0.0.1:${toString ports.talks}:80" ]; volumes = [ "/var/pretalx-data:/data" # {static, media} -- cgit 1.4.1