26 lines
553 B
TOML
26 lines
553 B
TOML
bind = "0.0.0.0:8001"
|
|
grpc_bind = "0.0.0.0:7001"
|
|
domain = "localhost"
|
|
|
|
[debug]
|
|
database = false
|
|
print_routes = false
|
|
|
|
[services]
|
|
aliases = { id = "auth", uc = "files", co = "interactive", im = "messaging" }
|
|
|
|
[database]
|
|
dsn = "host=localhost user=postgres dbname=postgres password=password port=5432 sslmode=disable"
|
|
prefix = "sn_"
|
|
|
|
[mq]
|
|
addr = "localhost:4222"
|
|
|
|
[kv]
|
|
endpoints = ["localhost:2379"]
|
|
|
|
[security]
|
|
public_key = "keys/public_key.pem"
|
|
internal_public_key = "keys/internal_public_key.pem"
|
|
internal_private_key = "keys/internal_private_key.pem"
|