From 370d975dbb95d160b1e1ecc2694eb8bd56a22f5f Mon Sep 17 00:00:00 2001 From: kalipso Date: Tue, 19 Nov 2024 15:23:07 +0100 Subject: [PATCH] [durruti] add docs.malobeo.org to host_config --- machines/durruti/host_config.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/machines/durruti/host_config.nix b/machines/durruti/host_config.nix index 418bbeba..1a007618 100644 --- a/machines/durruti/host_config.nix +++ b/machines/durruti/host_config.nix @@ -33,6 +33,12 @@ in } ]; + services.nginx.virtualHosts."docs.malobeo.org" = { + forceSSL = true; + enableACME= true; + locations."/".proxyPass = "http://${cfg.host_ip}:9000"; + }; + services.nginx.virtualHosts."tasklist.malobeo.org" = { forceSSL = true; enableACME= true;