forked from Gr33nbl00d/caddy-revocation-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.json
31 lines (31 loc) · 822 Bytes
/
test.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
{
"client_authentication": {
"trusted_ca_certs_pem_files": [
"./certificates/ca.crt",
"./certificates/ca2.crt"
],
"mode": "require_and_verify",
"revocation_check": {
"mode": "prefer_ocsp,prefer_crl",
"crl_config": {
"crl_work_dir": "./crls",
"crl_storage": "memory,disk",
"crl_signature_validation_mode": "none,verify_log,verify",
"trusted_signature_cert_files": [
"./certificates/crlca.crt"
],
"crl_url_locations": [
"http://server/my.crl"
],
"crl_file_locations": [
"./crls/my.crl"
],
"crl_update_interval": "10m",
"cdp_support": {
"cdp_fetch": "never,fetch_actively,fetch_background",
"cdp_crl_required": true
}
}
}
}
}