diff --git a/roles/web/files/vhost b/roles/web/files/vhost index c9ecb04..2a0d121 100644 --- a/roles/web/files/vhost +++ b/roles/web/files/vhost @@ -80,7 +80,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.3-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; fastcgi_intercept_errors on; } } diff --git a/roles/web/tasks/main.yml b/roles/web/tasks/main.yml index 4d18aa2..7e65198 100644 --- a/roles/web/tasks/main.yml +++ b/roles/web/tasks/main.yml @@ -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.3-fpm - service: name=php7.3-fpm state=started enabled=yes +- name: Start php7.4-fpm + service: name=php7.4-fpm state=started enabled=yes