-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.yaml.example
126 lines (111 loc) · 2.46 KB
/
config.yaml.example
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# vim: ft=yaml
dirs:
local:
# Local directory to store app config. PRIVATE DATA
apps: apps
# local directory where templates are stores
template: template
# local directory where to store backups. PRIVATE DATA
backups: backups
# local directory to store passwords and other secrets generated/used by ansible. PRIVATE DATA
secrets: secrets
server:
# Remote abslute path where to deploy apps
apps: "/apps/"
apps_data: "/data/apps/"
data: "/data/"
github:
# access tokento Github API
access_token:
# webhook secret to use to send push notication and to be checked by the webhook script against unauthorized requests
webhook_secret:
# account where private repos are hosted
username:
db:
mysql:
# mysql password for root user
root_password:
postgres:
# postgresql password for root user
root_password:
storage:
minio:
root_password:
root_user:
url:
backup:
- type: drive
client_id: ""
client_secret: ""
token: ""
- type: ftp
host: ""
user: ""
pass: ""
- type: local
dest: /
# OVH API access keys to create dns records and email forwading
ovh:
endpoint: ovh-eu
application_key:
application_secret:
consumer_key:
default_zone:
django:
superuser:
# username to use for the superuser created by the script
username:
# email to use for the superuser created by the script
email:
# plain text password to use for the superuser created by the script
password:
bigbluebutton:
url:
secret:
# Webmaster of web apps
webmaster:
full_name:
# webmaster email where to sent ssl expiration notifications
email:
# datadog account to use to collect matrix
datadog:
api_key:
# server sysadmin user account, will be created by ansible playbook
sysadmin:
username:
password:
full_name:
email:
ssh:
# ssh private key passphrase, or you can use SSH Agent
passphrase: null
# Password to use to do username/password auth. Note: username is set at sysadmin.username
password: null
# config_path: # set a different path to ssh config file
# colorize_errors: True
shell:
dry: False
echo: True
pty: False
warn: False
shell: "/bin/bash"
replace_env: True
timeout: 60 #secs
env: {}
asynchronous: False
disown: False
runtimes:
mysql:
version: 8.0
postgres:
version: 13
python:
version: 3.8
ruby:
version: 2.7
nodejs:
version: 16
php:
version: 7.4
golang:
version: 1.16