nix flake update + website

This commit is contained in:
Henri Dohmen 2026-02-27 17:29:34 +01:00
parent 1d8b29fec3
commit 9f332da434
Signed by: hd
GPG key ID: AB79213B044674AE
6 changed files with 48 additions and 22 deletions

View file

@ -36,6 +36,7 @@
acme = {
acceptTerms = true;
defaults.email = "acme@henri-dohmen.de";
};
};

View file

@ -20,10 +20,35 @@
privateVirtualHosts."roam.lan" = {
locations."/" = { };
};
virtualHosts."roam.hdohmen.de" = {
enableACME = true;
forceSSL = true;
locations."/" = { };
virtualHosts = {
"www.henri-dohmen.de" = {
enableACME = true;
forceSSL = true;
globalRedirect = "https://hdohmen.de";
};
"henri-dohmen.de" = {
enableACME = true;
forceSSL = true;
globalRedirect = "https://hdohmen.de";
};
"www.hdohmen.de" = {
enableACME = true;
forceSSL = true;
globalRedirect = "https://hdohmen.de";
};
"hdohmen.de" = {
enableACME = true;
forceSSL = true;
locations."/" = { };
extraConfig = ''
access_log off;
'';
};
"roam.hdohmen.de" = {
enableACME = true;
forceSSL = true;
locations."/" = { };
};
};
};