-
Notifications
You must be signed in to change notification settings - Fork 162
/
edge.template.json
46 lines (46 loc) · 1.05 KB
/
edge.template.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
{
"version": "1.0",
"envConfig": {
"@ENV_NAME@": {
"targetServers": [
{
"host": "client.badssl.com",
"isEnabled": true,
"name": "badSSLWithoutClientCert",
"port": 443,
"sSLInfo": {
"enabled": "true",
"ignoreValidationErrors": false
}
},
{
"host": "client.badssl.com",
"isEnabled": true,
"name": "badSSLWithClientCert",
"port": 443,
"sSLInfo": {
"clientAuthEnabled": "true",
"enabled": "true",
"ignoreValidationErrors": false,
"keyAlias": "badSSLClientCert",
"keyStore": "badSSLKeyStore"
}
}
],
"keystores": [
{
"name": "badSSLKeyStore"
}
],
"aliases": [
{
"alias": "badSSLClientCert",
"keystorename": "badSSLKeyStore",
"format": "pkcs12",
"filePath": "@CERT_PATH@",
"password": "badssl.com"
}
]
}
}
}