31 lines
709 B
YAML
31 lines
709 B
YAML
|
|
# =============================================
|
||
|
|
# 文件管理系统配置
|
||
|
|
# =============================================
|
||
|
|
|
||
|
|
server:
|
||
|
|
port: 8080
|
||
|
|
mode: debug
|
||
|
|
public_url: "http://localhost:5173"
|
||
|
|
|
||
|
|
database:
|
||
|
|
host: 127.0.0.1
|
||
|
|
port: 3306
|
||
|
|
username: root
|
||
|
|
password: "123456"
|
||
|
|
dbname: seeyon_fs
|
||
|
|
|
||
|
|
jwt:
|
||
|
|
secret: seeyon-filesystem-jwt-secret-key-2024
|
||
|
|
expiration: 24
|
||
|
|
|
||
|
|
storage:
|
||
|
|
default_policy_id: 1
|
||
|
|
local_base_path: D:/Seeyon/A8/localfile
|
||
|
|
cdn_host: "http://localhost:3090"
|
||
|
|
cdn_path_prefix: "/public"
|
||
|
|
|
||
|
|
# 备份工具路径(留空则自动搜索)
|
||
|
|
backup:
|
||
|
|
mysqldump_path: "C:/Program Files/MySQL/MySQL Server 8.0/bin/mysqldump.exe"
|
||
|
|
mysql_path: "C:/Program Files/MySQL/MySQL Server 8.0/bin/mysql.exe"
|