This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RequestCounter/bin/conf/config.yml
T

35 lines
511 B
YAML

servers:
# 服务器建立的地址
host: "0.0.0.0"
# 服务器监听的端口
port: 5000
view:
# 默认显示主题
style: "lewd"
database:
# 数据库类型
# 可选 'SQLite' 'MySQL'
type: "SQLite"
SQLite:
path: "./bin/db/data.db"
MySQL:
# 数据库地址
host: "127.0.0.1"
# 数据库端口
port: 3306
# 数据库用户
user: ""
# 数据库密码
password: ""
# 数据库名称
# 如果该数据库不存在则自动创建
db: ""