13 lines
196 B
Nix
13 lines
196 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.nginx.virtualHosts."ellie.town" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
root = "/var/www/blog";
|
|
|
|
locations."/" = {
|
|
index = "index.html";
|
|
};
|
|
};
|
|
}
|