diff --git a/acme.nix b/acme.nix index 307bf77..b5b6828 100644 --- a/acme.nix +++ b/acme.nix @@ -7,6 +7,7 @@ "meta.sourcehut.${base-domain}" "git.sourcehut.${base-domain}" "docspell.${base-domain}" + "teedy.${base-domain}" ]; acceptTerms = true; defaults = { diff --git a/nginx.nix b/nginx.nix index c7cb1a1..f989df9 100644 --- a/nginx.nix +++ b/nginx.nix @@ -26,6 +26,13 @@ proxyPass = "http://localhost:7879"; }; }; + "teedy.${base-domain}" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyPass = "http://localhost:7778"; + }; + }; }; }; }