nix-configs/web/ahoneybun-net.nix
2023-06-19 16:42:04 +00:00

17 lines
271 B
Nix

{ config, pkgs, ... }:
{
services.nginx = {
enable = true;
virtualHosts = {
"ahoneybun.net" = {
forceSSL = true;
enableACME = true;
locations."/" = {
root = "/var/www/ahoneybun-net/_site";
};
};
};
};
}