HermitNix_DEPRECATED/sites/hermitcollective.net

11 lines
220 B
Plaintext

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