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/events.emile.space.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'nix/hosts/corrino/www/events.emile.space.nix') diff --git a/nix/hosts/corrino/www/events.emile.space.nix b/nix/hosts/corrino/www/events.emile.space.nix index bb4db38..d7f5d50 100644 --- a/nix/hosts/corrino/www/events.emile.space.nix +++ b/nix/hosts/corrino/www/events.emile.space.nix @@ -1,6 +1,8 @@ { ... }: -{ +let + ports = import ../ports.nix; +in { services.nginx.virtualHosts."events.emile.space" = { forceSSL = true; enableACME = true; @@ -8,7 +10,7 @@ locations = { "/" = { extraConfig = '' - proxy_pass http://[::1]:4000; + proxyPass = "http://[::1]:${toString ports.events}"; ''; }; }; @@ -27,7 +29,7 @@ settings.":mobilizon" = { "Mobilizon.Web.Endpoint" = { url.host = "events.emile.space"; - http.port = 4000; + http.port = ports.events; # The IP address to listen on. Defaults to [::1] notated as a byte # tuple. -- cgit 1.4.1