-
Notifications
You must be signed in to change notification settings - Fork 1
/
site.yml
47 lines (39 loc) · 1.19 KB
/
site.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
- name: apply common configuration to all nodes
hosts: all
remote_user: root
tasks:
- include: common/bootstrap.yml
- name: configure and deploy the webservers and application code
hosts: webservers
remote_user: root
vars_files:
- vars/mysql.yml
- vars/tarsnap.yml
tasks:
- include: web/deploy.yml
- include: web/git.yml
- include: web/git-post-receive-webhook.yml
- include: web/mysql.yml
- include: web/nginx-passenger.yml
- include: web/nodejs.yml
- include: web/php.yml
- include: web/postfix.yml
- include: web/postgresql.yml
- include: web/redis.yml
- include: web/ruby.yml
- include: web/tarsnap.yml
- include: web/php5-fpm.yml
- include: web/php-pear.yml
- include: web/postgresql-ruby.yml
- include: web/push-to-deploy.yml
- include: web/rails.yml
- include: web/php-mysql.yml
- include: web/php-gnupg.yml
handlers:
- include: web/mysql-handlers.yml
- include: web/nginx-handlers.yml
- include: web/php5-fpm-handlers.yml
- include: web/postfix-handlers.yml
- include: web/postgresql-handlers.yml
- include: web/push-to-deploy-handlers.yml
- include: web/redis-handlers.yml