mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-05 09:17:39 +01:00
40 lines
1.3 KiB
YAML
40 lines
1.3 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: Configure php-fpm pool (if enabled).
|
|
lineinfile:
|
|
dest: "{{ php_fpm_pool_conf_path }}"
|
|
regexp: "{{ item.regexp }}"
|
|
line: "{{ item.line }}"
|
|
state: present
|
|
with_items:
|
|
- regexp: "^listen.?=.+$"
|
|
line: "listen = {{ php_fpm_listen }}"
|
|
- regexp: '^listen\.allowed_clients.?=.+$'
|
|
line: "listen.allowed_clients = {{ php_fpm_listen_allowed_clients }}"
|
|
- regexp: '^pm\.max_children.?=.+$'
|
|
line: "pm.max_children = {{ php_fpm_pm_max_children }}"
|
|
- regexp: '^pm\.start_servers.?=.+$'
|
|
line: "pm.start_servers = {{ php_fpm_pm_start_servers }}"
|
|
- regexp: '^pm\.min_spare_servers.?=.+$'
|
|
line: "pm.min_spare_servers = {{ php_fpm_pm_min_spare_servers }}"
|
|
- regexp: '^pm\.max_spare_servers.?=.+$'
|
|
line: "pm.max_spare_servers = {{ php_fpm_pm_max_spare_servers }}"
|
|
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: started
|
|
enabled: yes
|
|
when: php_enable_php_fpm
|