home-server/services/blog.nix

23 lines
339 B
Nix
Raw Normal View History

2026-03-10 19:14:02 -07:00
{ ... }:
{
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";
};
}