-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
32 lines (27 loc) · 903 Bytes
/
appsettings.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
{
"AllowedHosts": "*",
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"BasicAuth__HELP": "It is NOT Kafka authentication, it is to protect this API",
"BasicAuthEnabled": true,
"BasicAuthLogin": "admin",
"BasicAuthPassword": "admin",
"ClientId": "json2kafka",
"Topic": "monTopic",
"BootstrapServers": "localhost:9092",
"EnableIdempotence": true,
"EnableIdempotence__HELP": "Default false, true if order and only once garantee needed",
"EnableSslCertificateVerification" : false,
"SslCaLocation": "",
"SaslPassword": "",
"SaslUsername": "",
"SaslMechanism": "",
"SaslMechanism__HELP": "Gssapi = 0, Plain = 1, ScramSha256 = 2, ScramSha512 = 3",
"SecurityProtocol": 0,
"SecurityProtocol__HELP": "Plaintext = 0, Ssl = 1, SaslPlaintext = 2, SaslSsl = 3"
}