-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathca.json
More file actions
40 lines (40 loc) · 825 Bytes
/
ca.json
File metadata and controls
40 lines (40 loc) · 825 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
{
"root": "/run/secrets/root_ca.crt",
"crt": "/run/secrets/intermediate_ca.crt",
"key": "/run/secrets/intermediate_ca.key",
"password": null,
"address": ":14000",
"dnsNames": [
"localhost"
],
"logger": {
"format": "text"
},
"authority": {
"claims": {
"maxTLSCertDuration": "2160h",
"defaultTLSCertDuration": "720h"
},
"provisioners": [
{
"type": "ACME",
"name": "internal"
}
]
},
"tls": {
"cipherSuites": [
"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
],
"minVersion": 1.2,
"maxVersion": 1.2,
"renegotiation": false
},
"db": {
"type": "badger",
"dataSource": "/run/db",
"valueDir": "/run/secrets/badger",
"badgerFileLoadingMode": "MemoryMap"
}
}