HermitNix_DEPRECATED/sites/hertog.hermitcollective.net

11 lines
234 B
Plaintext

{ config, ... }:
{
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."hertog.hermitcollective.net" = {
forceSSL = true;
enableACME = true;
root = "/var/www/hertog.hermitcollective.net";
};
}