HermitCollective.nix/sites/hermitcollective.net/default.nix

9 lines
178 B
Nix
Raw Normal View History

2024-03-06 09:25:15 +00:00
{
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."hermitcollective.net" = {
forceSSL = true;
enableACME = true;
root = "./docs";
};
}