nix-configs/web/rockymtnlug-org.nix

17 lines
279 B
Nix

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