mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-24 12:06:02 +01:00
f5aab0ceb2
Allow to configure extra fpm pools with a generic template. You can find an example of php_fpm_extra_pools usage in default vars. pool_name and pool_listen are mandatory.
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
---
|
|
- name: Define php_fpm_daemon.
|
|
set_fact:
|
|
php_fpm_daemon: "{{ __php_fpm_daemon }}"
|
|
when: php_fpm_daemon is not defined
|
|
|
|
- name: Define php_fpm_pool_conf_path.
|
|
set_fact:
|
|
php_fpm_pool_conf_path: "{{ __php_fpm_pool_conf_path }}"
|
|
when: php_fpm_pool_conf_path is not defined
|
|
|
|
- name: Define php_fpm_pool_user.
|
|
set_fact:
|
|
php_fpm_pool_user: "{{ __php_fpm_pool_user }}"
|
|
when: php_fpm_pool_user is not defined
|
|
|
|
- name: Define php_fpm_pool_group.
|
|
set_fact:
|
|
php_fpm_pool_group: "{{ __php_fpm_pool_group }}"
|
|
when: php_fpm_pool_group is not defined
|
|
|
|
- name: Stat php_fpm_pool_conf_path
|
|
stat:
|
|
path: "{{ php_fpm_pool_conf_path | dirname }}"
|
|
register: php_fpm_pool_conf_path_dir_stat
|
|
|
|
- name: Ensure the default pool directory exists.
|
|
file:
|
|
path: "{{ php_fpm_pool_conf_path | dirname }}"
|
|
state: directory
|
|
owner: root
|
|
group: root
|
|
mode: 0755
|
|
when: php_fpm_pool_conf_path_dir_stat.stat.islnk is not defined
|
|
|
|
- name: Create fpm pools.
|
|
template:
|
|
src: "{{ item.pool_template | default('www.conf.j2', true) }}"
|
|
dest: "{{ php_fpm_pool_conf_path | dirname }}/{{ item.pool_name }}.conf"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
force: true
|
|
loop: "{{ php_fpm_pools | default([], true) }}"
|
|
when: php_enable_php_fpm
|
|
notify: restart php-fpm
|
|
|
|
- name: Ensure php-fpm is started and enabled at boot (if configured).
|
|
service:
|
|
name: "{{ php_fpm_daemon }}"
|
|
state: "{{ php_fpm_state }}"
|
|
enabled: "{{ php_fpm_enabled_on_boot }}"
|
|
when: php_enable_php_fpm and ansible_distribution != "Debian"
|