2014-08-16 23:35:57 +02:00
|
|
|
---
|
|
|
|
- name: Install php5-fpm and deps
|
|
|
|
apt: name={{ item }} state=present update_cache=yes
|
|
|
|
with_items:
|
|
|
|
- php5-fpm
|
2014-08-28 10:25:35 +02:00
|
|
|
# for WordPress
|
2014-08-16 23:35:57 +02:00
|
|
|
- php5-mysql
|
|
|
|
- php5-gd
|
|
|
|
- php5-curl
|
|
|
|
tags: php5-fpm
|
|
|
|
|
|
|
|
- name: Copy php5-fpm pool config
|
2014-08-27 18:48:21 +02:00
|
|
|
template: src=pool.conf.j2 dest=/etc/php5/fpm/pool.d/{{ item.nginx_domain_name }}.conf owner=root group=root mode=0644
|
2014-09-14 11:19:26 +02:00
|
|
|
with_items: nginx_vhosts | union(nginx_tls_vhosts)
|
2014-08-16 23:35:57 +02:00
|
|
|
notify: restart php5-fpm
|
|
|
|
tags: php5-fpm
|
|
|
|
|
|
|
|
# re-configure php to only process exact paths, see:
|
|
|
|
# http://codex.wordpress.org/Nginx
|
|
|
|
- name: Update php.ini
|
2014-09-14 11:34:44 +02:00
|
|
|
replace: dest=/etc/php5/fpm/php.ini regexp='^;cgi\.fix_pathinfo=0$' replace='cgi.fix_pathinfo=0'
|
2014-08-16 23:35:57 +02:00
|
|
|
notify: restart php5-fpm
|
|
|
|
tags: php5-fpm
|
|
|
|
|
|
|
|
# vim: set ts=2 sw=2:
|