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

9 lines
214 B
Nix
Raw Permalink 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;
2024-03-06 09:55:31 +00:00
root = "/etc/nixos/sites/hermitcollective.net/docs";
2024-03-06 09:25:15 +00:00
};
}