forked from Coflnet/SkyBazaar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
43 lines (43 loc) · 1.21 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"DBCONNECTION": "server=mariadb;user=root;password=takenfrombitnami;database=test",
"CASSANDRA": {
"HOSTS": "localhost",
"USER": "cassandra",
"PASSWORD": "cassandra",
"KEYSPACE": "bazaar_quickstatus",
"REPLICATION_CLASS": "SimpleStrategy",
"REPLICATION_FACTOR": 1
},
"JAEGER_SAMPLER_TYPE": "ratelimiting",
"KAFKA_HOST": "kafka",
"SETTINGS_REDIS_HOST": "redis",
"ITEMS_BASE_URL": "http://localhost:5014",
"EVENTS_BASE_URL": "http://localhost:5024",
"TOPICS": {
"BAZAAR": "sky-bazaar"
},
"KAFKA": {
"CONSUMER_GROUP": "sky-bazaar",
"BROKERS": "kafka:9092",
"USERNAME": "",
"PASSWORD": "",
"TLS": {
"CERTIFICATE_LOCATION": "",
"CA_LOCATION": "",
"KEY_LOCATION": ""
},
"REPLICATION_FACTOR": "3"
},
"JAEGER_SAMPLER_PARAM": "2",
"MARIADB_VERSION": "10.5.5",
"JAEGER_AGENT_HOST": "jaeger",
"JAEGER_SERVICE_NAME": "sky-bazaar"
}