diff --git a/roles/web/files/vhost b/roles/web/files/vhost index 95721b7..e5bfb18 100644 --- a/roles/web/files/vhost +++ b/roles/web/files/vhost @@ -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; } } diff --git a/roles/web/tasks/main.yml b/roles/web/tasks/main.yml index 983bb99..4c1ad1f 100644 --- a/roles/web/tasks/main.yml +++ b/roles/web/tasks/main.yml @@ -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