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.

19 lines
441B

  1. ---
  2. - import_role:
  3. name: php
  4. vars:
  5. php_version: "{{nextcloud_php_version}}"
  6. php_configure_opcache: true
  7. php_fpm_install: "{{ nextcloud_webserver == 'nginx' }}"
  8. php_apache_module: "{{ nextcloud_webserver == 'apache2' }}"
  9. - name: php memory limit
  10. ini_file:
  11. path: /etc/php/7.3/{{nextcloud_php_config}}/php.ini
  12. section: PHP
  13. option: memory_limit
  14. value: '512M'
  15. backup: yes
  16. notify: restart webserver