diff options
author | Emile <git@emile.space> | 2024-03-26 10:30:12 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2024-03-26 10:32:37 +0100 |
commit | cb20d078360ec9235b9b3a78d7950ded1f601267 (patch) | |
tree | 52d5ab591c843d9a7e888369f8315410c86e2203 /nix/hosts/corrino/www/md.emile.space.nix | |
parent | dfed6d17ebc3494fc783b7a345b342d59e4e325a (diff) |
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!
Diffstat (limited to 'nix/hosts/corrino/www/md.emile.space.nix')
-rw-r--r-- | nix/hosts/corrino/www/md.emile.space.nix | 9 |
1 files changed, 6 insertions, 3 deletions
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"; |