generated from Ekwav/SkyBase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
46 lines (46 loc) · 1.38 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
44
45
46
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"DBCONNECTION": "server=mariadb;user=root;password=takenfrombitnami;database=test",
"JAEGER_SAMPLER_TYPE": "ratelimiting",
"REDIS_HOST": "redis",
"PLAYERNAME_BASE_URL": "http://localhost:5018",
"PROFILE_BASE_URL": "http://localhost:5013",
"API_BASE_URL": "http://localhost:5005",
"TOPICS": {
"SOLD_AUCTION": "sky-soldauction",
"NEW_AUCTION": "sky-newauction"
},
"KAFKA": {
"BROKERS": "kafka:9092",
"USERNAME": "",
"PASSWORD": "",
"TLS": {
"CERTIFICATE_LOCATION": "",
"CA_LOCATION": "",
"KEY_LOCATION": ""
},
"REPLICATION_FACTOR": "1"
},
"CASSANDRA": {
"HOSTS": "localhost",
"USER": "cassandra",
"PASSWORD": "cassandra",
"KEYSPACE": "sky_auctions",
"REPLICATION_CLASS": "SimpleStrategy",
"REPLICATION_FACTOR": 1,
"X509Certificate_PATHS": "",
"X509Certificate_PASSWORD": null,
"X509Certificate_VALIDATION_PATH": null
},
"JAEGER_SAMPLER_PARAM": "2",
"MARIADB_VERSION": "10.5.5",
"OTEL_EXPORTER_OTLP_TRACES_ENDPOINT": "http://jaeger",
"JAEGER_SERVICE_NAME": "sky-base"
}