8 lines
158 B
Nix
8 lines
158 B
Nix
{ tools, ... }:
|
|
with tools.vhosts;
|
|
let
|
|
noSSL = { enableACME = false; forceSSL = false; };
|
|
in
|
|
{
|
|
"ky.rip" = simplePHP "/srv/storage/www/ky.rip" // noSSL;
|
|
}
|