mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
49 lines
1.7 KiB
YAML
49 lines
1.7 KiB
YAML
---
|
|
- name: Set permissions on socket - owner
|
|
lineinfile: "dest=/etc/php/5.6/fpm/pool.d/www.conf state=present regexp='^;?listen.owner' line='listen.owner = www-data'"
|
|
notify: restart php5.6-fpm
|
|
|
|
- name: Set permissions on socket - group
|
|
lineinfile: "dest=/etc/php/5.6/fpm/pool.d/www.conf state=present regexp='^;?listen.group' line='listen.group = www-data'"
|
|
notify: restart php5.6-fpm
|
|
|
|
- name: Set permissions on socket - mode
|
|
lineinfile: "dest=/etc/php/5.6/fpm/pool.d/www.conf state=present regexp='^;?listen.mode' line='listen.mode = 0660'"
|
|
notify: restart php5.6-fpm
|
|
|
|
- name: ensure timezone is set in fpm php.ini
|
|
lineinfile: dest=/etc/php/5.6/fpm/php.ini
|
|
regexp='date.timezone ='
|
|
line='date.timezone = {{ server.timezone }}'
|
|
notify: restart php5.6-fpm
|
|
|
|
- name: enabling opcache
|
|
lineinfile: dest=/etc/php/5.6/fpm/php.ini
|
|
regexp=';?opcache.enable=\d'
|
|
line='opcache.enable=1'
|
|
notify: restart php5.6-fpm
|
|
|
|
- name: Disable PHP cache limiter
|
|
lineinfile: dest=/etc/php/5.6/fpm/php.ini
|
|
regexp=';?\s*session.cache_limiter\s*=\s*'
|
|
line='session.cache_limiter = ""'
|
|
notify: restart php5.6-fpm
|
|
|
|
- name: set post_max_size
|
|
lineinfile: dest=/etc/php/5.6/fpm/php.ini
|
|
regexp=';?post_max_size\s*=\s*'
|
|
line='post_max_size = 2G'
|
|
notify: restart php5.6-fpm
|
|
|
|
- name: set upload_max_filesize
|
|
lineinfile: dest=/etc/php/5.6/fpm/php.ini
|
|
regexp=';?upload_max_filesize\s*=\s*'
|
|
line='upload_max_filesize = 2G'
|
|
notify: restart php5.6-fpm
|
|
|
|
- name: set max_input_vars
|
|
lineinfile: dest=/etc/php/5.6/fpm/php.ini
|
|
regexp=';?max_input_vars\s*=\s*'
|
|
line='max_input_vars = 12000'
|
|
notify: restart php5.6-fpm
|