HermitNix_DEPRECATED/Sites/hertog.hermitcollective.net

11 lines
233 B
Plaintext
Raw Permalink Normal View History

2023-10-20 21:52:37 +00:00
{ 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";
};
2023-11-06 19:14:02 +00:00
}