10 lines
180 B
Nix
10 lines
180 B
Nix
{ tools }:
|
|
with tools.vhosts;
|
|
let
|
|
inherit (tools) domain;
|
|
|
|
noSSL = { enableACME = false; forceSSL = false; };
|
|
in
|
|
{
|
|
"ky.rip" = simplePHP "/srv/storage/www/ky.rip" // noSSL;
|
|
}
|