Merge pull request #394 from blizzz/fix-max_requests

Fix variable name for pm.max_requests.
This commit is contained in:
Jeff Geerling 2023-06-21 22:27:23 -05:00 committed by GitHub
commit 3a6b924388
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ php_fpm_pools:
pool_pm_start_servers: "{{ php_fpm_pm_start_servers }}"
pool_pm_min_spare_servers: "{{ php_fpm_pm_min_spare_servers }}"
pool_pm_max_spare_servers: "{{ php_fpm_pm_max_spare_servers }}"
pool_php_fpm_pm_max_requests: "{{ php_fpm_pm_max_requests }}"
pool_pm_max_requests: "{{ php_fpm_pm_max_requests }}"
# The executable to run when calling PHP from the command line.
php_executable: "php"