support php7.3 and buster

This commit is contained in:
nd 2019-07-19 01:34:28 +02:00
parent 773f2339e8
commit 6d652e56a9
No known key found for this signature in database
GPG key ID: 21B5CD4DEE3670E9
6 changed files with 17 additions and 14 deletions

View file

@ -13,7 +13,7 @@
- php-opcache
- php-imap
- php-intl # intl
- php-mcrypt
#- php-mcrypt
- php-smbclient
- php-net-ftp
- php-exif
@ -37,16 +37,16 @@
- reload nginx
- name: copy nginx php upstream
copy:
src: php-fpm/conf-php
template:
src: php-fpm/upstream-php.conf.j2
dest: /etc/nginx/conf.d/php.conf
notify:
- reload nginx
- name: copy php-fpm config
copy:
dest: /etc/php/7.0/fpm/pool.d/www.conf
src: php-fpm/www.conf
template:
dest: "/etc/php/{{ php_version }}/fpm/pool.d/www.conf"
src: php-fpm/www.conf.j2
mode: 0644
notify:
- restart php-fpm
@ -60,7 +60,7 @@
- name: copy php-fpm php.ini
template:
dest: /etc/php/7.0/fpm/php.ini
dest: "/etc/php/{{ php_version }}/fpm/php.ini"
src: php-fpm/php.ini.j2
mode: 0644
notify: