mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-24 12:06:02 +01:00
42 lines
966 B
YAML
42 lines
966 B
YAML
---
|
|
- name: Ensure configuration directories exist.
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
follow: true
|
|
with_items:
|
|
- "{{ php_conf_path }}"
|
|
- "{{ php_extension_conf_path }}"
|
|
|
|
- name: Place PHP configuration file in place.
|
|
template:
|
|
src: php.ini.j2
|
|
dest: "{{ php_conf_path }}/php.ini"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify: restart webserver
|
|
when: php_use_managed_ini
|
|
|
|
- name: Place APC configuration file in place.
|
|
template:
|
|
src: apc.ini.j2
|
|
dest: "{{ php_extension_conf_path }}/{{ php_apc_conf_filename }}"
|
|
owner: root
|
|
group: root
|
|
force: yes
|
|
mode: 0644
|
|
when: php_enable_apc
|
|
notify: restart webserver
|
|
|
|
- name: Place OpCache configuration file in place.
|
|
template:
|
|
src: opcache.ini.j2
|
|
dest: "{{ php_extension_conf_path }}/{{ php_opcache_conf_filename }}"
|
|
owner: root
|
|
group: root
|
|
force: yes
|
|
mode: 0644
|
|
when: php_opcache_enable
|
|
notify: restart webserver
|