-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathglobal_vars.yml
More file actions
93 lines (63 loc) · 2.26 KB
/
Copy pathglobal_vars.yml
File metadata and controls
93 lines (63 loc) · 2.26 KB
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
88
89
90
91
92
93
---
# The server is public and use letsencrypt to generate certs, and check domains
public_server: True
# Create proxy base
install_proxy_base: True
# Create root domain with ssh cert
install_root: True
# Install nextcloud server
install_nextcloud: True
# Install email server
install_email: True
# Install ldap server
install_ldap: True
# Install collabora server
install_collabora: True
# Install onlyoffice server
install_onlyoffice: True
# Install gitlab server
install_gitlab: True
# Install jenkins server
install_jenkins: True
# Install nexus server
install_nexus: True
# Install sonar server
install_sonar: True
# Root domain (And email/ldap domain name)
root_domain: "mydomain.com"
# Subdomain for nextcloud installation
cloud_domain: "cloud.{{root_domain}}"
# Subdomain for email server installation
mail_domain: "mail.{{root_domain}}"
# Subdomain for ldap server installation
ldap_domain: "ldap.{{root_domain}}"
# Subdomain for collabora server installation
collabora_domain: "collabora.{{root_domain}}"
# Subdomain for onlyoffice server installation
onlyoffice_domain: "onlyoffice.{{root_domain}}"
# Subdomain for gitlab installation
gitlab_domain: "gitlab.{{root_domain}}"
# Subdomain for jenkins installation
jenkins_domain: "jenkins.{{root_domain}}"
# Subdomain for nexus installation
nexus_domain: "nexus.{{root_domain}}"
# Subdomain for sonar installation
sonar_domain: "sonar.{{root_domain}}"
# Email to use on letsencrypt cert generator
email_certbot: "admin@mydomain.com"
# Root installation directory
root_directory_deploy: "/opt"
# Installation directory cloud
directory_deploy_cloud: "{{root_directory_deploy}}/cloud"
# Installation directory for data cloud
directory_volumes_cloud: "{{directory_deploy_cloud}}/dockervolumes"
# Installation directory for scripts cloud
directory_scripts_cloud: "{{directory_deploy_cloud}}/dockerscripts"
# Installation directory devtools
directory_deploy_devtools: "{{root_directory_deploy}}/devtools"
# Installation directory for data devtools
directory_volumes_devtools: "{{directory_deploy_devtools}}/dockervolumes"
# Installation directory for scripts devtools
directory_scripts_devtools: "{{directory_deploy_devtools}}/dockerscripts"
# Installation directory proxy
directory_deploy_proxy: "{{root_directory_deploy}}/proxy"