diff options
Diffstat (limited to 'nix/hosts/corrino/www/hydra.emile.space.nix')
-rw-r--r-- | nix/hosts/corrino/www/hydra.emile.space.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/nix/hosts/corrino/www/hydra.emile.space.nix b/nix/hosts/corrino/www/hydra.emile.space.nix index 2607ac0..1d1fa0a 100644 --- a/nix/hosts/corrino/www/hydra.emile.space.nix +++ b/nix/hosts/corrino/www/hydra.emile.space.nix @@ -1,13 +1,15 @@ - { ... }: +{ config, ... }: -{ +let + ports = import ../ports.nix; +in { services.nginx.virtualHosts."hydra.emile.space" = { forceSSL = true; enableACME = true; locations = { "/" = { - proxyPass = "http://127.0.0.1:3001"; + proxyPass = "http://127.0.0.1:${toString config.services.hydra.port}"; }; }; }; @@ -22,7 +24,7 @@ enable = true; listenHost = "*"; - port = 3001; + port = ports.hydra; hydraURL = "https://hydra.emile.space"; # externally visible URL # Directory that holds Hydra garbage collector roots. |