2015-07-15 17:14:39 +07:00
|
|
|
---
|
|
|
|
|
|
|
|
- hosts: all
|
2015-07-15 21:26:27 +07:00
|
|
|
pre_tasks:
|
|
|
|
- apt: pkg=php5-fpm update_cache=yes cache_valid_time=3600 state=present
|
2015-07-15 20:18:51 +07:00
|
|
|
vars:
|
2015-07-15 21:26:27 +07:00
|
|
|
nginx_php: true
|
2015-07-15 20:18:51 +07:00
|
|
|
nginx_vhosts:
|
|
|
|
- name: 'test.local'
|
|
|
|
template: 'static'
|
|
|
|
ssl:
|
|
|
|
use: false
|
2015-07-15 21:26:27 +07:00
|
|
|
- name: 'test-php.local'
|
|
|
|
template: 'wordpress'
|
|
|
|
ssl:
|
|
|
|
use: false
|
2015-07-15 17:14:39 +07:00
|
|
|
roles:
|
|
|
|
- ../../
|