Version 0.1: Inital working deployment version

This commit is contained in:
2024-12-04 10:33:29 +01:00
parent b5d0dc3f2b
commit d608cff6fc
26 changed files with 479 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
---
- 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
- name: Adjust smbclient setting.
template:
src: "templates/smbclient.ini.j2"
dest: "/etc/php/7.4/mods-available/smbclient.ini"
owner: root
group: root
notify: restart apache