11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
|
{ 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";
|
||
|
};
|
||
|
}
|