File tree Expand file tree Collapse file tree 5 files changed +5
-1
lines changed Expand file tree Collapse file tree 5 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ Available variables are listed below with their default values (you can also see
25
25
| Variable | Description |
26
26
| -------- | ----------- |
27
27
| php_config_ini_path | Default: ` /etc/php.ini `
28
+ | php_fpm_binary | Default: ` php-fpm ` . The name of the binary for the php-fpm service
28
29
| php_fpm_config_pool_path | Default: ` /etc/php-fpm.d `
29
30
| php_fpm_daemon | Default: ` php-fpm `
30
31
| php_request_slowlog_timeout | Default: ` 0 `
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ php_config_ini_path: /etc/php.ini
6
6
php_fpm_config_path : /etc/php-fpm.conf
7
7
php_fpm_config_pool_path : /etc/php-fpm.d
8
8
php_fpm_daemon : php-fpm
9
+ php_fpm_binary : php-fpm
9
10
php_fpm_site_errorlog : /home/{{ system_user }}/logs/{{ site_domain | replace(".", "_") }}.php.error.log
10
11
php_fpm_slowlog : /var/log/php-fpm/{{ system_user }}-slow.log
11
12
php_fpm_socket_path : /var/run/php-fpm/{{ system_user }}.sock
Original file line number Diff line number Diff line change 6
6
name : docker
7
7
8
8
platforms :
9
- - name : " molecule-ansible-role-mysql "
9
+ - name : " molecule-ansible-role-php_fpm "
10
10
image : ${MOLECULE_IMAGE:-geerlingguy/docker-ubuntu2204-ansible:latest}
11
11
command : ${MOLECULE_DOCKER_COMMAND:-""}
12
12
volumes :
Original file line number Diff line number Diff line change 24
24
- php_version
25
25
- php_version_flat
26
26
- php_config_ini_path
27
+ - php_fpm_binary
27
28
- php_fpm_config_path
28
29
- php_fpm_daemon
29
30
- php_ini_memory_limit
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ php_config_ini_path: /etc/php/{{ php_version }}/fpm/php.ini
3
3
php_fpm_config_path : /etc/php/{{ php_version }}/fpm/php-fpm.conf
4
4
php_fpm_config_pool_path : /etc/php/{{ php_version }}/fpm/pool.d
5
5
php_fpm_daemon : php{{ php_version }}-fpm
6
+ php_fpm_binary : php-fpm{{ php_version }}
6
7
php_fpm_site_errorlog : /home/{{ system_user }}/logs/{{ site_domain | replace(".", "_") }}.php.error.log
7
8
php_fpm_slowlog : /var/log/php{{ php_version }}-fpm-slow.log
8
9
php_fpm_socket_path : /var/run/php/{{ system_user }}.sock
You can’t perform that action at this time.
0 commit comments