home-server/services/blog.nix
2026-03-10 19:17:44 -07:00

13 lines
196 B
Nix

{ ... }:
{
services.nginx.virtualHosts."ellie.town" = {
enableACME = true;
forceSSL = true;
root = "/var/www/blog";
locations."/" = {
index = "index.html";
};
};
}