diff --git a/roles/web/files/vhost b/roles/web/files/vhost index 7dca9de..8641b53 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/php5-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; fastcgi_intercept_errors on; } } diff --git a/roles/web/handlers/main.yml b/roles/web/handlers/main.yml index e9b1ff5..9735dcd 100644 --- a/roles/web/handlers/main.yml +++ b/roles/web/handlers/main.yml @@ -3,8 +3,5 @@ - name: Restart nginx service: name=nginx state=restarted -- name: Restart php5-fpm - service: name=php5-fpm state=restarted - - name: Run certmgr command: /opt/acertmgr/acertmgr.py diff --git a/roles/web/tasks/main.yml b/roles/web/tasks/main.yml index bb9474d..5b9423b 100644 --- a/roles/web/tasks/main.yml +++ b/roles/web/tasks/main.yml @@ -3,9 +3,9 @@ - name: Install dependencies apt: name={{ item }} with_items: - - php5-fpm - - php5-ldap - - php5-sqlite + - php7.0-fpm + - php7.0-ldap + - php7.0-sqlite3 - name: Create vhost directory file: path=/var/www/kitchen state=directory owner=www-data group=www-data @@ -30,5 +30,5 @@ file: src=/etc/nginx/sites-available/www dest=/etc/nginx/sites-enabled/www state=link notify: Restart nginx -- name: Start php5-fpm - service: name=php5-fpm state=started enabled=yes +- name: Start php7.0-fpm + service: name=php7.0-fpm state=started enabled=yes