feat(wordpress/module): Factorize ip construction more

This commit is contained in:
Tom Hubrecht 2024-01-08 18:01:32 +01:00
parent 9c457666f5
commit 3533076bd4

View file

@ -10,6 +10,8 @@ let
mkName = builtins.replaceStrings [ "." ] [ "-" ];
mkIp = ip: i: "${ip}.${builtins.toString i}";
mkHost = mkIp "10.31.41";
mkLocal = mkIp "10.0.0";
mkConfig = { name, value, i }: {
services.wordpress = {
@ -26,7 +28,7 @@ let
networking = {
hostName = mkName name;
hosts.${mkIp "10.0.0" i} = [ name ];
hosts.${mkLocal i} = [ name ];
firewall.allowedTCPPorts = [ 443 ];
};
@ -52,8 +54,8 @@ let
mountPoint = certs.${site.name}.directory;
};
hostAddress = mkIp "10.31.41" i;
localAddress = mkIp "10.0.0" i;
hostAddress = mkHost i;
localAddress = mkLocal i;
autoStart = true;
@ -68,7 +70,7 @@ let
forceSSL = true;
locations."/".proxyPass =
"https://${mkIp "10.31.41" i}:${builtins.toString (cfg.basePort + i)}";
"https://${mkHost i}:${builtins.toString (cfg.basePort + i)}";
};
};