aboutsummaryrefslogtreecommitdiffstats
path: root/roles/nextcloud/tasks/php.yml
blob: 9721e8f9694537e15306e72e2ec6ea7355ed4702 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---

- name: apply php settings
  community.general.ini_file:
    path: "{{ nextcloud__php_configuration_file }}"
    section: "{{ item.section }}"
    option: "{{ item.option }}"
    value: "{{ item.value }}"
  loop: "{{ nextcloud__php_settings }}"

- name: apply php-fpm settings
  community.general.ini_file:
    path: "{{ nextcloud__php_fpm_configuration_file }}"
    section: "{{ item.section }}"
    option: "{{ item.option }}"
    value: "{{ item.value }}"
  loop: "{{ nextcloud__php_fpm_settings }}"
remember that computers suck.