Skip to content
Snippets Groups Projects
Commit bcb0f9d7 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-inventories/arocom#1297 Add APCu to PHP 7

parent ea580beb
No related branches found
No related tags found
No related merge requests found
......@@ -62,13 +62,16 @@
notify:
- "Apache | Restart Apache"
- name: "PHP | Cache configuration file, opcache.ini"
- name: "PHP | Configuration files"
template:
src=etc-php5-conf-d-opcache.ini
dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/opcache.ini
src=etc-php5-conf-d-{{ item }}.ini
dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/{{ item }}.ini
owner=root
group=root
mode='644'
with_items:
- 'opcache'
- 'apcu'
notify:
- "Apache | Restart Apache"
......
extension=apcu.so
apc.shm_size={{ apc_shm_size }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment