Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ php_apc_enable_cli: "0"
# If this is set to false, none of the following options will have any effect.
# Any and all changes to /etc/php.ini will be your responsibility.
php_use_managed_ini: true
php_use_apcu_managed_ini: true
php_use_opcache_managed_ini: true

php_expose_php: "On"
php_memory_limit: "256M"
Expand Down
3 changes: 3 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,8 @@
# Configure PHP.
- include_tasks: configure.yml
- include_tasks: configure-apcu.yml
when: php_use_apcu_managed_ini
- include_tasks: configure-opcache.yml
when: php_use_opcache_managed_ini
- include_tasks: configure-fpm.yml
when: php_enable_php_fpm