ansible-php/tasks/php55min.yml

12 lines
275 B
YAML
Raw Normal View History

2015-07-23 15:40:33 +07:00
---
- name: APT | Install php-apcu
apt: pkg=php5-apcu state=latest
- name: TEMPLATE | Configure Opcache / APCu
template: src=etc/php5/mods-available/{{ item }}.j2 dest=/etc/php5/mods-available/{{ item }}
with_items:
- apcu
- opcache
notify: restart php-fpm