12 lines
175 B
Nix
12 lines
175 B
Nix
{ ... }:
|
|
{
|
|
root = "/var/www/5438"; # TODO: make declarative
|
|
|
|
locations."/" = {
|
|
index = "zacharys-guide.pdf";
|
|
};
|
|
|
|
# https
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
}
|