nix-configs/web/rockymtnlug-org.nix
Aaron Honeycutt de53a26819 format nix
2025-09-18 17:24:56 -06:00

18 lines
287 B
Nix

{
config,
pkgs,
...
}: {
services.nginx = {
enable = true;
virtualHosts = {
"rockymountainlinuxfest.org" = {
forceSSL = true;
enableACME = true;
locations."/" = {
root = "/var/www/RMFest-website";
};
};
};
};
}