13 lines
184 B
Nix
13 lines
184 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.nginx.virtualHosts."static.venberg.xyz" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
root = "/storage/static";
|
|
};
|
|
}
|