17 lines
329 B
YAML
17 lines
329 B
YAML
service:
|
|
http:
|
|
host: 0.0.0.0 # 默认localhost
|
|
port: 9999 # 默认9999
|
|
|
|
db:
|
|
db_host: "192.168.0.9"
|
|
db_port: "15432"
|
|
db_name: "nengyuan"
|
|
db_user: "iuu_postgres"
|
|
db_pass: "iuu_postgres"
|
|
table_prefix: "energy_"
|
|
time_zone: "Asia/Shanghai"
|
|
log_level: 4
|
|
slow_threshold: 200
|
|
idle_conns: 10
|
|
open_conns: 50 |