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/md.emile.space.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'nix/hosts/corrino/www/md.emile.space.nix') diff --git a/nix/hosts/corrino/www/md.emile.space.nix b/nix/hosts/corrino/www/md.emile.space.nix index 8d9d109..29ddc67 100644 --- a/nix/hosts/corrino/www/md.emile.space.nix +++ b/nix/hosts/corrino/www/md.emile.space.nix @@ -1,6 +1,8 @@ { config, pkgs, ... }: -{ +let + ports = import ../ports.nix; +in { services.nginx.virtualHosts."md.emile.space" = { forceSSL = true; enableACME = true; @@ -10,7 +12,8 @@ locations = { "/" = { - proxyPass = "http://127.0.0.1:3003"; + # proxyPass = "http://127.0.0.1:3003"; + proxyPass = "http://127.0.0.1:${toString config.services.hedgedoc.settings.port}"; # TODO(emile): figure out why this doesn't work when enabled, has to do with authelia # extraConfig = authelia-authrequest; @@ -58,7 +61,7 @@ settings = { host = "127.0.0.1"; - port = 3003; + port = ports.md; domain = "md.emile.space"; -- cgit 1.4.1