-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.example.json
49 lines (49 loc) · 1.11 KB
/
config.example.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
47
48
49
{
"Cluster": {
"Endpoint": "localhost",
"Port": 19080
},
"HashIncludeExtensions": [
".dll",
".exe",
".config"
],
"HashSpecificExludes": [
"nondeterministic.dll"
],
"ExternalIncludes": [
{
"ApplicationTypeName": "AppTypeName",
"ServiceManifestName": "ServiceName",
"PackageName": "Config",
"SourceFileName": "prodconfig.xml",
"TargetFileName": "Settings.xml"
}
],
"Https": [
{
"ApplicationTypeName": "AppTypeName",
"ServiceManifestName": "ServiceName",
"EndpointName": "ServiceEndpointHttps",
"CertThumbprint": "CERTTHUMBPRINT"
}
],
"Endpoints": [
{
"ApplicationTypeName": "ApiType",
"ServiceManifestName": "ServiceName",
"EndpointName": "ServiceEndpointHttp",
"Port": 80,
"Protocol": "http",
"Type": "Input"
},
{
"ApplicationTypeName": "ApiType",
"ServiceManifestName": "ServiceName",
"EndpointName": "ServiceEndpointHttps",
"Port": 443,
"Protocol": "https",
"Type": "Input"
}
]
}