Revert "Pin PHP-FPM version to 7.4"

This reverts commit b498a9556a.
This commit is contained in:
coolneng 2022-05-02 01:55:28 +02:00
parent 69aba01d8c
commit df672cd2a5
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,6 @@
services.phpfpm.pools.wallabag = { services.phpfpm.pools.wallabag = {
user = "nginx"; user = "nginx";
group = "nginx"; group = "nginx";
phpPackage = pkgs.php74;
settings = { settings = {
"listen.owner" = config.services.nginx.user; "listen.owner" = config.services.nginx.user;
"listen.group" = config.services.nginx.group; "listen.group" = config.services.nginx.group;
@ -26,7 +25,7 @@
"pm.max_requests" = 32; "pm.max_requests" = 32;
"env[WALLABAG_DATA]" = "/var/lib/wallabag"; "env[WALLABAG_DATA]" = "/var/lib/wallabag";
}; };
phpEnv."PATH" = lib.makeBinPath [ pkgs.php74 ]; phpEnv."PATH" = lib.makeBinPath [ pkgs.php ];
}; };
# Set environment variable pointing to wallabag configuration directory # Set environment variable pointing to wallabag configuration directory