HermitNix_DEPRECATED/Sites/blog.hermitcollective.net

11 lines
234 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."blog.hermitcollective.net" = {
forceSSL = true;
enableACME = true;
root = "/var/www/blog.hermitcollective.net/docs";
2023-10-20 21:52:37 +00:00
};
2023-11-06 19:14:02 +00:00
}