web: switch to PHP 7.3

This commit is contained in:
Markus 2019-09-12 13:34:05 +02:00
parent 772df6c630
commit e31abbb8bb
2 changed files with 7 additions and 7 deletions

View File

@ -64,7 +64,7 @@ server {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
fastcgi_intercept_errors on;
}
}

View File

@ -3,10 +3,10 @@
- name: Install dependencies
apt: name={{ item }}
with_items:
- php7.0-fpm
- php7.0-ldap
- php7.0-sqlite3
- php7.0-xml
- php-fpm
- php-ldap
- php-sqlite3
- php-xml
- name: Create vhost directory
file: path=/var/www/kitchen state=directory owner=www-data group=www-data
@ -35,5 +35,5 @@
file: src=/etc/nginx/sites-available/www dest=/etc/nginx/sites-enabled/www state=link
notify: Restart nginx
- name: Start php7.0-fpm
service: name=php7.0-fpm state=started enabled=yes
- name: Start php7.3-fpm
service: name=php7.3-fpm state=started enabled=yes