-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
47 lines (43 loc) · 922 Bytes
/
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
{
"signing": {
"default": {
"ocsp_url": "http://ocsp.example.com/ocsp",
"crl_url": "http://crl.example.com/crl/list.crl",
"expiry": "8760h",
"usages": [
"signing",
"key encipherment",
"client auth",
"server auth"
]
},
"profiles": {
"intermediate-ca": {
"expiry": "87600h",
"usages": ["digital signature","cert sign","crl sign"],
"ca_constraint": {
"is_ca": true,
"max_path_len": 0,
"max_path_len_zero": true
}
},
"server": {
"expiry": "43800h",
"usages": [
"signing",
"key encipherment",
"server auth",
"client auth"
]
},
"client": {
"expiry": "43800h",
"usages": [
"signing",
"key encipherment",
"client auth"
]
}
}
}
}