-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathkeystone-api-config.json
63 lines (63 loc) · 1.89 KB
/
keystone-api-config.json
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
{
"command": "/usr/sbin/httpd",
"config_files": [
{
"source": "/var/lib/config-data/merged/keystone.conf",
"dest": "/etc/keystone/keystone.conf",
"owner": "keystone",
"perm": "0600"
},
{
"source": "/var/lib/config-data/merged/custom.conf",
"dest": "/etc/keystone/keystone.conf.d/custom.conf",
"owner": "keystone",
"perm": "0600"
},
{
"source": "/var/lib/config-data/merged/httpd.conf",
"dest": "/etc/httpd/conf/httpd.conf",
"owner": "root",
"perm": "0644"
},
{
"source": "/var/lib/credential-keys",
"dest": "/etc/keystone/",
"owner": "keystone:keystone",
"perm": "0700"
},
{
"source": "/var/lib/fernet-keys",
"dest": "/etc/keystone/",
"owner": "keystone:keystone",
"perm": "0700"
},
{
"source": "/var/lib/config-data/tls-certificates/tls.key",
"dest": "/etc/pki/tls/private/tls.key",
"owner": "keystone",
"perm": "0600",
"optional": true
},
{
"source": "/var/lib/config-data/tls-certificates/tls.crt",
"dest": "/etc/pki/tls/certs/tls.crt",
"owner": "keystone",
"perm": "0755",
"optional": true
},
{
"source": "/var/lib/config-data/merged/tls-ca-bundle.pem",
"dest": "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem",
"owner": "root",
"perm": "0444",
"optional": true
},
{
"source": "/var/lib/config-data/merged/my.cnf",
"dest": "/etc/my.cnf",
"owner": "keystone",
"perm": "0600",
"optional": true
}
]
}