My Nix Configuration

[prefect.services] remove unused php configuration

pyrox.dev e7f2094a feacd148

verified
Changed files
-22
systems
x86_64-linux
prefect
services
-1
systems/x86_64-linux/prefect/default.nix
···
./services/mailserver
./services/netdata.nix
./services/nginx
-
./services/php.nix
./services/prometheus.nix
./services/secrets.nix
./services/tailscale.nix
-21
systems/x86_64-linux/prefect/services/php.nix
···
-
{ lib, pkgs, ... }:
-
{
-
services.phpfpm.pools = {
-
littlelink = {
-
user = "caddy";
-
settings = {
-
"listen.owner" = "caddy";
-
"pm" = "dynamic";
-
"pm.max_children" = 32;
-
"pm.max_requests" = 500;
-
"pm.start_servers" = 2;
-
"pm.min_spare_servers" = 2;
-
"pm.max_spare_servers" = 5;
-
"php_admin_value[error_log]" = "stderr";
-
"php_admin_flag[log_errors]" = true;
-
"catch_workers_output" = true;
-
};
-
phpEnv."PATH" = lib.makeBinPath [ pkgs.php ];
-
};
-
};
-
}