Phpfpm: Difference between revisions
imported>Makefu No edit summary |
fix links |
||
(6 intermediate revisions by 5 users not shown) | |||
Line 2: | Line 2: | ||
== Configuration for nginx== | == Configuration for nginx== | ||
This configuration will set up phpfpm for serving php files from <code> | This configuration will set up phpfpm for serving php files from <code>${dataDir}</code>. | ||
Import this from your <code>configuration.nix</code>. | |||
<syntaxHighlight lang=nix> | <syntaxHighlight lang=nix> | ||
{ | { pkgs, lib, config, ... }: | ||
let | |||
app = "phpdemo"; | |||
domain = "${app}.example.com"; | |||
dataDir = "/srv/http/${domain}"; | |||
in { | |||
services.phpfpm.pools.${app} = { | |||
user = app; | |||
settings = { | |||
"listen.owner" = config.services.nginx.user; | |||
"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 ]; | |||
}; | |||
services.nginx = { | services.nginx = { | ||
enable = true; | enable = true; | ||
virtualHosts. | virtualHosts.${domain}.locations."/" = { | ||
root = | root = dataDir; | ||
extraConfig = '' | extraConfig = '' | ||
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |||
fastcgi_pass unix:${config.services.phpfpm.pools.${app}.socket}; | |||
include ${pkgs.nginx}/conf/fastcgi.conf; | |||
''; | |||
}; | }; | ||
}; | |||
}; | users.users.${app} = { | ||
isSystemUser = true; | |||
createHome = true; | |||
home = dataDir; | |||
group = app; | |||
}; | |||
users.groups.${app} = {}; | |||
} | } | ||
</syntaxHighlight> | </syntaxHighlight> | ||
=== Escaping special chars === | |||
When using regular expressions in <code>locations</code> blocks, be ware of the [https://nixos.org/manual/nix/stable/language/values.html#type-string need to escape some special chars] like <code>\</code>. | |||
i.e. <code>locations."~ ^(.+\.php)(.*)$" = {</code> should be escaped to <code>locations."~ ^(.+\\.php)(.*)$" = {</code> | |||
Otherwise file names like ''gly'''php'''ro.css'' will be matched and parsed by the php interpreter. Which likely fails with an access error because of php-fpms [https://www.php.net/manual/en/install.fpm.configuration.php security.limit_extensions]. | |||
See also [[Nginx | the nginx article]]. | |||
== PHP Extensions == | == PHP Extensions == | ||
To use certain PHP extensions you will need to configure them in the <code>php.ini</code>-configuration of phpfpm: | To use certain PHP extensions you will need to configure them in the <code>php.ini</code>-configuration of phpfpm via <code>services.phpfpm.phpOptions</code> or <code>services.phpfpm.pools.${pool}.phpOptions</code>: | ||
<syntaxHighlight lang=nix> | <syntaxHighlight lang=nix> | ||
{ | { | ||
services.phpfpm.phpOptions = '' | services.phpfpm.phpOptions = '' | ||
extension=${pkgs. | extension=${pkgs.phpExtensions.redis}/lib/php/extensions/redis.so | ||
extension=${pkgs. | extension=${pkgs.phpExtensions.apcu}/lib/php/extensions/apcu.so | ||
''; | ''; | ||
} | } | ||
</syntaxHighlight> | </syntaxHighlight> |
Latest revision as of 13:45, 1 April 2024
php-fpm is a fastcgi interface for php.
Configuration for nginx
This configuration will set up phpfpm for serving php files from ${dataDir}
.
Import this from your configuration.nix
.
{ pkgs, lib, config, ... }:
let
app = "phpdemo";
domain = "${app}.example.com";
dataDir = "/srv/http/${domain}";
in {
services.phpfpm.pools.${app} = {
user = app;
settings = {
"listen.owner" = config.services.nginx.user;
"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 ];
};
services.nginx = {
enable = true;
virtualHosts.${domain}.locations."/" = {
root = dataDir;
extraConfig = ''
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:${config.services.phpfpm.pools.${app}.socket};
include ${pkgs.nginx}/conf/fastcgi.conf;
'';
};
};
users.users.${app} = {
isSystemUser = true;
createHome = true;
home = dataDir;
group = app;
};
users.groups.${app} = {};
}
Escaping special chars
When using regular expressions in locations
blocks, be ware of the need to escape some special chars like \
.
i.e. locations."~ ^(.+\.php)(.*)$" = {
should be escaped to locations."~ ^(.+\\.php)(.*)$" = {
Otherwise file names like glyphpro.css will be matched and parsed by the php interpreter. Which likely fails with an access error because of php-fpms security.limit_extensions.
See also the nginx article.
PHP Extensions
To use certain PHP extensions you will need to configure them in the php.ini
-configuration of phpfpm via services.phpfpm.phpOptions
or services.phpfpm.pools.${pool}.phpOptions
:
{
services.phpfpm.phpOptions = ''
extension=${pkgs.phpExtensions.redis}/lib/php/extensions/redis.so
extension=${pkgs.phpExtensions.apcu}/lib/php/extensions/apcu.so
'';
}