31 lines
635 B
YAML
31 lines
635 B
YAML
---
|
|
- name: enable PHP opcache
|
|
template:
|
|
src: opcache.j2
|
|
dest: ~/etc/php.d/opcache.ini
|
|
mode: 0644
|
|
notify:
|
|
- restart php
|
|
- name: enable PHP APCu
|
|
template:
|
|
src: apcu.j2
|
|
dest: ~/etc/php.d/apcu.ini
|
|
mode: 0644
|
|
notify:
|
|
- restart php
|
|
- name: set PHP memory limit to 512 MB
|
|
template:
|
|
src: memory_limit.j2
|
|
dest: ~/etc/php.d/memory_limit.ini
|
|
mode: 0644
|
|
notify:
|
|
- restart php
|
|
- name: disable PHP output buffering
|
|
template:
|
|
src: output_buffering.j2
|
|
dest: ~/etc/php.d/output_buffering.ini
|
|
mode: 0644
|
|
notify:
|
|
- restart php
|
|
- name: flush handlers
|
|
meta: flush_handlers |