Merge pull request #72 from LewisW/configurable-pool-path

Made php_fpm_pool_conf_path configurable - for PHP 7.
This commit is contained in:
Jeff Geerling 2016-01-22 09:35:13 -06:00
commit 3170d5c263
3 changed files with 7 additions and 2 deletions

View File

@ -4,6 +4,11 @@
php_fpm_daemon: "{{ __php_fpm_daemon }}" php_fpm_daemon: "{{ __php_fpm_daemon }}"
when: php_fpm_daemon is not defined 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). - name: Configure php-fpm pool (if enabled).
lineinfile: lineinfile:
dest: "{{ php_fpm_pool_conf_path }}" dest: "{{ php_fpm_pool_conf_path }}"

View File

@ -20,4 +20,4 @@ __php_extension_conf_path: "{{ __php_conf_path }}/conf.d"
__php_apc_conf_filename: 20-apcu.ini __php_apc_conf_filename: 20-apcu.ini
__php_opcache_conf_filename: 05-opcache.ini __php_opcache_conf_filename: 05-opcache.ini
__php_fpm_daemon: php5-fpm __php_fpm_daemon: php5-fpm
php_fpm_pool_conf_path: "/etc/php5/fpm/pool.d/www.conf" __php_fpm_pool_conf_path: "/etc/php5/fpm/pool.d/www.conf"

View File

@ -23,4 +23,4 @@ php_extension_conf_path: /etc/php.d
__php_apc_conf_filename: 50-apc.ini __php_apc_conf_filename: 50-apc.ini
__php_opcache_conf_filename: 10-opcache.ini __php_opcache_conf_filename: 10-opcache.ini
__php_fpm_daemon: php-fpm __php_fpm_daemon: php-fpm
php_fpm_pool_conf_path: "/etc/php-fpm.d/www.conf" __php_fpm_pool_conf_path: "/etc/php-fpm.d/www.conf"