blob: ec8a5a9df3f86849439653e11858ac4e81a91def (
plain)
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
|
[application]
env = "development"
port = 1610
[monitoring]
log-level = "warden_pseudonyms=trace,info"
opentelemetry-endpoint = "http://localhost:4317"
loki-endpoint = "http://localhost:3100"
[misc]
something = "http://localhost:8080"
[database]
pool_size = 100
port = 5432
name = "pseudonyms"
host = "localhost"
user = "postgres"
password = "password"
[cache]
dsn = "redis://localhost:6379"
pooled = true
type = "non-clustered" # clustered, non-clustered or sentinel
max-connections = 100
|