-
Notifications
You must be signed in to change notification settings - Fork 0
/
playbook.yml
87 lines (83 loc) · 2.27 KB
/
playbook.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
# to active fact gathering
# to see all properties ansible -m setup postgres
- hosts: all
tasks: []
- name: Set up a PostgreSQL/PostGIS server Python2
hosts: postgres
gather_facts: no
become: true
become_method: sudo
become_user: root
vars:
security_ufw_allowed_incoming_tcp_ports:
- 5432
- 22
roles:
- common
- security
- name: Set up a PostgreSQL/PostGIS server
hosts: postgres
gather_facts: yes
become: true
become_method: sudo
become_user: root
vars_files:
- vars/default.yml
vars:
# Vagrant...
# tomcat_ip: "{{ hostvars[groups['geonetwork'][0]]['ansible_all_ipv4_addresses'][2] }}"
# VM
tomcat_ip: "{{ hostvars[groups['geonetwork'][0]]['ansible_all_ipv4_addresses'][0] }}"
roles:
- postgres
- name: Set up a GeoNetwork server Python2
hosts: geonetwork
gather_facts: no
become: true
become_method: sudo
become_user: root
vars:
security_ufw_allowed_incoming_tcp_ports:
- 80
- 22
roles:
- common
- security
- name: Set up a GeoNetwork server
hosts: geonetwork
gather_facts: yes
become: true
become_method: sudo
become_user: root
vars_files:
- vars/default.yml
vars:
# Vagrant
# db_ip: "{{ hostvars[groups['postgres'][0]]['ansible_all_ipv4_addresses'][2] }}"
# VM
db_ip: "{{ hostvars[groups['postgres'][0]]['ansible_all_ipv4_addresses'][0] }}"
# Vagrant
# tomcat_ip: "{{ hostvars[groups['geonetwork'][0]]['ansible_all_ipv4_addresses'][2] }}"
# VM
tomcat_ip: "{{ hostvars[groups['geonetwork'][0]]['ansible_all_ipv4_addresses'][0] }}"
nginx_remove_default_vhost: true
nginx_vhosts:
- listen: "80 default_server"
server_name: "{{tomcat_ip}} localhost"
extra_parameters: |
location /geonetwork {
proxy_pass http://localhost:8080/geonetwork;
proxy_redirect off;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_read_timeout 240s;
proxy_send_timeout 240s;
proxy_next_upstream_timeout 300s;
}
roles:
- tomcat
- geonetwork
- geerlingguy.nginx