This commit is contained in:
Ellie 2026-03-10 19:14:02 -07:00
parent 674202dbae
commit 0885fdbfdd
2 changed files with 23 additions and 0 deletions

22
services/blog.nix Normal file
View file

@ -0,0 +1,22 @@
{ ... }:
{
services.nginx = {
enable = true;
virtualHosts."ellie.town" = {
enableACME = true;
forceSSL = true;
root = "/var/www/blog";
locations."/" = {
index = "index.html";
};
};
};
security.acme = {
acceptTerms = true;
defaults.email = "contact@elliehigh.com";
};
}