Issue #45: Fix PHP-FPM setup and configuration when installing from source x3.

This commit is contained in:
Jeff Geerling 2015-07-06 19:46:04 -05:00
parent ac77ea3327
commit f240b7a268

View File

@ -117,6 +117,12 @@
when: "'--enable-fpm' in php_source_configure_command"
notify: restart php-fpm
- name: Ensure php-fpm config directory exists.
file:
path: "{{ php_conf_path }}/fpm"
state: directory
when: "'--enable-fpm' in php_source_configure_command"
- name: Ensure php-fpm config file is installed.
template:
src: php-fpm.conf.j2