feat (hosts/mystra): taskd

This commit is contained in:
Henri Saudubray 2026-02-17 17:56:31 +01:00
parent 2bbad71636
commit a7c598fe42
Signed by: hms
GPG key ID: 7065F57ED8856128
3 changed files with 32 additions and 15 deletions

16
hosts/mystra/nginx.nix Normal file
View file

@ -0,0 +1,16 @@
{ ... }:
{
services.nginx = {
enable = true;
virtualHosts."henri-saudubray.fr" = {
enableACME = true;
# forceSSL = true;
root = "/var/www/html";
};
};
security.acme = {
acceptTerms = true;
defaults.email = "henri.saudubray@proton.me";
};
}