Nexus/settings.toml

26 lines
508 B
TOML
Raw Normal View History

2024-10-20 17:23:53 +08:00
bind = "0.0.0.0:8001"
grpc_bind = "0.0.0.0:7001"
2024-10-19 22:36:33 +08:00
domain = "localhost"
[debug]
database = false
print_routes = false
[database]
2024-10-20 19:04:41 +08:00
dsn = "host=localhost user=postgres dbname=postgres password=password port=5432 sslmode=disable"
prefix = "sn_"
2024-10-19 22:36:33 +08:00
2024-10-24 23:46:09 +08:00
[mq]
addr = "localhost:4222"
2024-10-21 22:07:36 +08:00
[kv]
endpoints = ["localhost:2379"]
2024-10-22 00:12:28 +08:00
[security]
public_key = "keys/public_key.pem"
internal_public_key = "keys/internal_public_key.pem"
internal_private_key = "keys/internal_private_key.pem"
2025-01-30 22:14:23 +08:00
[watchtower]
database_backups = "./backups"