You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - import_role:
- name: php
- vars:
- php_version: "{{nextcloud_php_version}}"
- php_configure_opcache: true
- php_fpm_install: "{{ nextcloud_webserver == 'nginx' }}"
- php_apache_module: "{{ nextcloud_webserver == 'apache2' }}"
-
- - name: php memory limit
- ini_file:
- path: /etc/php/7.3/{{nextcloud_php_config}}/php.ini
- section: PHP
- option: memory_limit
- value: '512M'
- backup: yes
- notify: restart webserver
|