forked from infra/ansible
Modify web role for debian stretch.
This commit is contained in:
parent
313a27e20d
commit
fd6abd2dd2
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user