19 lines
462 B
YAML
19 lines
462 B
YAML
|
#!/usr/bin/env ansible-playbook
|
||
|
# vim:ft=ansible:
|
||
|
# Defaults for a simple php-fpm setup
|
||
|
php_enable_php_fpm: yes
|
||
|
php_memory_limit: 512M
|
||
|
php_packages_extra:
|
||
|
- libapache2-mod-php
|
||
|
- php-zip # For Nextcloud
|
||
|
- php-intl
|
||
|
- php-imagick
|
||
|
- php-redis
|
||
|
- php-bcmath
|
||
|
- php-gmp
|
||
|
- php-pgsql # For general DB stuff
|
||
|
# Nextcloud recommended opcache settings
|
||
|
php_opcache_max_accelerated_files: 10000
|
||
|
php_opcache_memory_consumption: 128
|
||
|
php_opcache_revalidate_freq: 2
|