8 lines
139 B
Nix
8 lines
139 B
Nix
|
{
|
||
|
services.nginx.virtualHosts."blog.hermitcollective.net" = {
|
||
|
forceSSL = true;
|
||
|
enableACME = true;
|
||
|
root = "./docs";
|
||
|
};
|
||
|
}
|