We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c49253e commit aa75c64Copy full SHA for aa75c64
1 file changed
authorization/mutual-authentication.md
@@ -32,15 +32,20 @@ To enable it you need a configuration like this:
32
33
```json
34
{
35
- "version": 3,
36
- "tls": {
37
- "public_key": "/path/to/cert.pem",
+ "version": 3,
+ "$schema": "https://www.krakend.io/schema/krakend.json",
+ "tls": {
38
+ "enable_mtls": true,
39
+ "ca_certs": [
40
+ "rootCA.pem"
41
+ ],
42
+ "keys": [
43
+ {
44
"private_key": "/path/to/key.pem",
- "enable_mtls": true,
- "ca_certs": [
- "./rootCA.pem"
- ]
- }
45
+ "public_key": "/path/to/cert.pem"
46
+ }
47
+ ]
48
49
}
50
```
51
0 commit comments