From 14c2a036ffe2aa2f4737de40a15806d9497f5c2a Mon Sep 17 00:00:00 2001 From: Mel Date: Thu, 10 Jul 2025 05:29:17 +0200 Subject: Serve landing pages for `catskill.dev` and `moth.run` Signed-off-by: Mel --- machines/renard/default.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'machines/renard') diff --git a/machines/renard/default.nix b/machines/renard/default.nix index aed4b2e..2f9dcb6 100644 --- a/machines/renard/default.nix +++ b/machines/renard/default.nix @@ -97,6 +97,24 @@ access_log /var/log/nginx/mel.access.log json_combined; ''; }; + + "catskill.dev" = { + enableACME = true; + forceSSL = true; + root = "/srv/catskill"; + extraConfig = '' + access_log /var/log/nginx/catskill.access.log json_combined; + ''; + }; + + "moth.run" = { + enableACME = true; + forceSSL = true; + root = "/srv/moth"; + extraConfig = '' + access_log /var/log/nginx/moth.access.log json_combined; + ''; + }; }; system.stateVersion = "24.05"; -- cgit 1.4.1