25 lines
776 B
YAML
25 lines
776 B
YAML
|
|
# MySQL数据库连接配置
|
|||
|
|
mysql:
|
|||
|
|
host: "123.60.55.248" # 数据库主机地址
|
|||
|
|
port: 3306 # 数据库端口
|
|||
|
|
username: "ddcz_bitmap" # 数据库用户名
|
|||
|
|
password: "EyTimzFHa8YfYEfY" # 数据库密码
|
|||
|
|
database: "ddcz_bitmap" # 数据库名称
|
|||
|
|
charset: "utf8mb4" # 字符集
|
|||
|
|
|
|||
|
|
# 连接池配置(可选)
|
|||
|
|
connection_pool:
|
|||
|
|
min_connections: 5 # 最小连接数
|
|||
|
|
max_connections: 20 # 最大连接数
|
|||
|
|
connection_timeout: 30 # 连接超时时间(秒)
|
|||
|
|
read_timeout: 30 # 读取超时时间(秒)
|
|||
|
|
|
|||
|
|
# SSL配置(可选)
|
|||
|
|
ssl:
|
|||
|
|
enabled: false # 是否启用SSL
|
|||
|
|
|
|||
|
|
# 其他配置
|
|||
|
|
options:
|
|||
|
|
autocommit: true # 自动提交
|
|||
|
|
timezone: "+08:00" # 时区设置
|