mirror of
https://github.com/geerlingguy/ansible-for-devops.git
synced 2024-05-19 06:50:03 +00:00
9 lines
242 B
YAML
9 lines
242 B
YAML
---
|
|
- name: Adjust OpCache memory setting.
|
|
lineinfile:
|
|
dest: "/etc/php/7.4/apache2/conf.d/10-opcache.ini"
|
|
regexp: "^opcache.memory_consumption"
|
|
line: "opcache.memory_consumption = 96"
|
|
state: present
|
|
notify: restart apache
|