nixpkgs/nixos/modules/services/web-servers/phpfpm/default.nix

135 lines
3.6 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2014-03-11 22:46:57 +00:00
with lib;
2014-03-11 22:46:57 +00:00
let
cfg = config.services.phpfpm;
stateDir = "/run/phpfpm";
fpmCfgFile = pool: poolOpts: pkgs.writeText "phpfpm-${pool}.conf" ''
2014-03-11 22:46:57 +00:00
[global]
error_log = syslog
daemonize = no
${cfg.extraConfig}
2014-03-11 22:46:57 +00:00
[${pool}]
listen = ${poolOpts.listen}
${poolOpts.extraConfig}
2014-03-11 22:46:57 +00:00
'';
phpIni = poolOpts: pkgs.runCommand "php.ini" {
inherit (poolOpts) phpPackage phpOptions;
preferLocalBuild = true;
nixDefaults = ''
sendmail_path = "/run/wrappers/bin/sendmail -t -i"
'';
passAsFile = [ "nixDefaults" "phpOptions" ];
} ''
cat $phpPackage/etc/php.ini $nixDefaultsPath $phpOptionsPath > $out
2016-04-29 06:26:20 +00:00
'';
2014-03-11 22:46:57 +00:00
in {
2014-03-11 22:46:57 +00:00
options = {
services.phpfpm = {
extraConfig = mkOption {
type = types.lines;
2014-03-11 22:46:57 +00:00
default = "";
description = ''
Extra configuration that should be put in the global section of
the PHP-FPM configuration file. Do not specify the options
<literal>error_log</literal> or
<literal>daemonize</literal> here, since they are generated by
NixOS.
2014-03-11 22:46:57 +00:00
'';
};
phpPackage = mkOption {
type = types.package;
default = pkgs.php;
defaultText = "pkgs.php";
description = ''
The PHP package to use for running the PHP-FPM service.
'';
};
phpOptions = mkOption {
type = types.lines;
default = "";
example =
''
date.timezone = "CET"
'';
description =
"Options appended to the PHP configuration file <filename>php.ini</filename>.";
};
pools = mkOption {
type = types.attrsOf (types.submodule (import ./pool-options.nix {
inherit lib config;
}));
default = {};
example = literalExample ''
{
mypool = {
listen = "/path/to/unix/socket";
phpPackage = pkgs.php;
extraConfig = '''
user = nobody
pm = dynamic
pm.max_children = 75
pm.start_servers = 10
pm.min_spare_servers = 5
pm.max_spare_servers = 20
pm.max_requests = 500
''';
}
}'';
description = ''
PHP-FPM pools. If no pools are defined, the PHP-FPM
service is disabled.
'';
};
2014-03-11 22:46:57 +00:00
};
};
config = mkIf (cfg.pools != {}) {
2017-02-27 23:00:57 +00:00
systemd.slices.phpfpm = {
description = "PHP FastCGI Process manager pools slice";
};
systemd.targets.phpfpm = {
description = "PHP FastCGI Process manager pools target";
wantedBy = [ "multi-user.target" ];
};
systemd.services = mapAttrs' (pool: poolOpts:
nameValuePair "phpfpm-${pool}" {
2017-02-27 23:00:57 +00:00
description = "PHP FastCGI Process Manager service for pool ${pool}";
after = [ "network.target" ];
2017-02-27 23:00:57 +00:00
wantedBy = [ "phpfpm.target" ];
partOf = [ "phpfpm.target" ];
preStart = ''
mkdir -p ${stateDir}
'';
serviceConfig = let
cfgFile = fpmCfgFile pool poolOpts;
iniFile = phpIni poolOpts;
in {
2017-02-27 23:00:57 +00:00
Slice = "phpfpm.slice";
PrivateDevices = true;
ProtectSystem = "full";
ProtectHome = true;
# XXX: We need AF_NETLINK to make the sendmail SUID binary from postfix work
RestrictAddressFamilies = "AF_UNIX AF_INET AF_INET6 AF_NETLINK";
Type = "notify";
ExecStart = "${poolOpts.phpPackage}/bin/php-fpm -y ${cfgFile} -c ${iniFile}";
ExecReload = "${pkgs.coreutils}/bin/kill -USR2 $MAINPID";
};
}
) cfg.pools;
2014-03-11 22:46:57 +00:00
};
}