Skip to content

Commit

Permalink
Closes #53, #60: Fix php.ini not applied for php-fpm on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyc committed Feb 20, 2016
1 parent a163bb9 commit fa157ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ __php_packages:
__php_webserver_daemon: "apache2"

# Vendor-specific configuration paths on Debian/Ubuntu make my brain asplode.
__php_conf_path: "{{ '/etc/php5' if php_webserver_daemon and php_webserver_daemon != 'apache2' else '/etc/php5/apache2' }}"
__php_conf_path: "{{ '/etc/php5/fpm' if php_enable_webserver and php_enable_php_fpm else '/etc/php5/apache2' if php_enable_webserver and php_webserver_daemon == 'apache2' else '/etc/php5/cli' }}"
__php_extension_conf_path: "{{ __php_conf_path }}/conf.d"

__php_apc_conf_filename: 20-apcu.ini
Expand Down

0 comments on commit fa157ab

Please sign in to comment.