-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsolo.json
More file actions
35 lines (35 loc) · 793 Bytes
/
solo.json
File metadata and controls
35 lines (35 loc) · 793 Bytes
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
{
"run_list": ["recipe[nginx-multisite]", "recipe[cache]", "recipe[fastapi-tutorial]"],
"nginx": {
"sites": {
"test.cluster.local": {
"document_root": "/var/www/test.cluster.local",
"ssl_enabled": true
},
"ci.cluster.local": {
"document_root": "/var/www/ci.cluster.local",
"ssl_enabled": true
},
"status.cluster.local": {
"document_root": "/var/www/status.cluster.local",
"ssl_enabled": true
}
},
"ssl": {
"certificate_path": "/etc/ssl/certs",
"private_key_path": "/etc/ssl/private"
}
},
"security": {
"fail2ban": {
"enabled": true
},
"ufw": {
"enabled": true
},
"ssh": {
"disable_root": true,
"password_auth": false
}
}
}