-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathca.json
More file actions
49 lines (49 loc) · 987 Bytes
/
ca.json
File metadata and controls
49 lines (49 loc) · 987 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"address": ":443",
"dnsNames": ["acmeproxy.example.com"],
"logger": {
"format": "json"
},
"db": {
"type": "bbolt",
"dataSource": "/opt/acme-proxy/db/bbolt"
},
"authority": {
"type": "externalcas",
"config": {
"ca_url": "",
"account_email": "",
"eab_kid": "",
"eab_hmac_key": "",
"metrics": {
"enabled": true,
"port": 9234,
"dataSource": "db/metrics"
}
},
"provisioners": [
{
"type": "ACME",
"name": "acme",
"claims": {
"enableSSHCA": false,
"disableRenewal": false,
"allowRenewalAfterExpiry": false,
"disableSmallstepExtensions": true
},
"options": {
"x509": {},
"ssh": {}
}
}
],
"template": {},
"backdate": "1m0s"
},
"tls": {
"minVersion": 1.1,
"maxVersion": 1.3,
"renegotiation": false
},
"commonName": "acmeproxy.example.com"
}