2018-03-18 21:26:46 +01:00
|
|
|
---
|
|
|
|
|
2018-04-29 15:04:03 +02:00
|
|
|
- block:
|
2018-04-29 15:10:53 +02:00
|
|
|
- name: Set php-fpm packages
|
|
|
|
set_fact:
|
|
|
|
php_fpm_packages:
|
|
|
|
- php-fpm
|
|
|
|
# for WordPress
|
|
|
|
- php-mysql
|
|
|
|
- php-gd
|
|
|
|
- php-curl
|
|
|
|
|
2018-04-29 15:04:03 +02:00
|
|
|
- name: Install php-fpm and deps
|
2018-04-29 15:10:53 +02:00
|
|
|
apt: name={{ php_fpm_packages }} state=present update_cache=yes
|
2018-03-18 21:26:46 +01:00
|
|
|
|
2018-04-29 15:04:03 +02:00
|
|
|
# only copy php-fpm config for vhosts that need WordPress or PHP
|
|
|
|
- name: Copy php-fpm pool config
|
|
|
|
template: src=php7.2-pool.conf.j2 dest=/etc/php/7.2/fpm/pool.d/{{ item.domain_name }}.conf owner=root group=root mode=0644
|
|
|
|
loop: "{{ nginx_vhosts }}"
|
2019-11-26 10:19:22 +01:00
|
|
|
when: (item.has_wordpress is defined and item.has_wordpress) or (item.needs_php is defined and item.needs_php)
|
2018-04-29 15:04:03 +02:00
|
|
|
notify: reload php7.2-fpm
|
|
|
|
|
|
|
|
- name: Remove default www pool
|
|
|
|
file: path=/etc/php/7.2/fpm/pool.d/www.conf state=absent
|
|
|
|
notify: reload php7.2-fpm
|
2018-03-18 21:26:46 +01:00
|
|
|
|
2018-04-29 15:04:03 +02:00
|
|
|
# re-configure php.ini
|
|
|
|
- name: Update php.ini
|
|
|
|
template: src=php7.2-php.ini.j2 dest=/etc/php/7.2/fpm/php.ini owner=root group=root mode=0644
|
|
|
|
notify: reload php7.2-fpm
|
2018-03-18 21:26:46 +01:00
|
|
|
tags: php-fpm
|
2021-01-01 18:54:12 +01:00
|
|
|
when: (item.has_wordpress is defined and item.has_wordpress) or (item.needs_php is defined and item.needs_php)
|
2018-03-18 21:26:46 +01:00
|
|
|
|
|
|
|
# vim: set ts=2 sw=2:
|