From 31d1aeeeece2f81336aa7af237e8ae3f25ec3076 Mon Sep 17 00:00:00 2001 From: Geir Okkenhaug Jerstad Date: Mon, 19 Aug 2024 17:24:13 +0000 Subject: [PATCH] updated email addr for acme service --- proxy/configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/proxy/configuration.nix b/proxy/configuration.nix index 95782ea..5804e04 100644 --- a/proxy/configuration.nix +++ b/proxy/configuration.nix @@ -52,13 +52,19 @@ in enableACME = true; locations."/".proxyPass = "http://apps:3000"; }; + #"geokkjer.eu" = { + # default = true; + # forceSSL = true; + # enableACME = true; + # locations."/".proxyPass = "/var/wwww/homepage/"; + #}; }; }; # acme let's encrypt security.acme = { acceptTerms = true; defaults = { - email = "geokkjer@gmail.com"; + email = "geir@geokkjer.eu"; }; }; }