-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yml
56 lines (48 loc) · 916 Bytes
/
config.yml
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
50
51
52
53
54
55
56
project:
name: Ozon Code Platform Verification API
debug: true
environment: development
grpc:
host: 0.0.0.0
port: 8082
maxConnectionIdle: 5 # Minutes
timeout: 15 # Seconds
maxConnectionAge: 5 # Minutes
rest:
host: 0.0.0.0
port: 8080
metrics:
host: 0.0.0.0
port: 9100
path: /metrics
jaeger:
service: "srv-verification-api"
host: "jaeger"
port: ":6832"
status:
host: 0.0.0.0
port: 8000
livenessPath: /live
readinessPath: /ready
versionPath: /version
database:
host: postgres
# host: localhost
port: 5432
user: postgres
password: postgres
name: srv_verification_api
sslmode: disable
migrations: migrations
driver: pgx
kafka:
capacity: 512
topic: "srv-verification-events"
groupId: "srv-verification-api"
brokers:
- "localhost:9095"
- "localhost:9096"
# - "kafka-1:9092"
# - "kafka-2:9092"
telemetry:
graylogPath: 127.0.0.1:12201