You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
459 B
YAML
12 lines
459 B
YAML
---
|
|
|
|
php_version: "{{ (ansible_distribution_major_version >= '10') | ternary('7.3', '7.0') }}"
|
|
|
|
phpfpm_package: "php{{ php_version }}-fpm"
|
|
phpfpm_configuration_directory: "/etc/php/{{ php_version }}/fpm"
|
|
phpfpm_configuration: "{{ phpfpm_configuration_directory }}/php-fpm.conf"
|
|
phpfpm_php_ini: "{{ phpfpm_configuration_directory }}/php.ini"
|
|
phpfpm_pools_directory: "{{ phpfpm_configuration_directory }}/pool.d"
|
|
|
|
phpfpm_sockets_directory: "/var/run/php-pools"
|