48 lines
976 B
Nix
48 lines
976 B
Nix
# internal interface
|
|
{ toolsets }:
|
|
# external interface
|
|
{ config ? null, lib ? null, domain ? toolsets.meta.domain, ... }:
|
|
let
|
|
tools = (self: {
|
|
|
|
inherit domain;
|
|
|
|
mappers = {
|
|
|
|
mapSubdomains = with lib; mapAttrs' (k: v: nameValuePair "${k}.${domain}" v);
|
|
|
|
};
|
|
|
|
vhosts = with self.vhosts; {
|
|
|
|
basic = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
};
|
|
|
|
redirect = target: basic // {
|
|
locations."/".return = "301 ${target}";
|
|
};
|
|
|
|
proxy = target: basic // {
|
|
locations."/".proxyPass = target;
|
|
};
|
|
|
|
static = root: basic // {
|
|
inherit root;
|
|
};
|
|
|
|
indexedStatic = root: (static root) // {
|
|
extraConfig = "autoindex on;";
|
|
};
|
|
|
|
simplePHP = root: (static root) // {
|
|
locations."~ \.php$".extraConfig = ''
|
|
fastcgi_pass unix:${config.services.phpfpm.pools.www.socket};
|
|
fastcgi_index index.php;
|
|
'';
|
|
};
|
|
|
|
};
|
|
}) tools;
|
|
in tools
|