[Feature](database): Add Support for SSL Connections and Database URL Configuration (#2540)

* feat(database): add support for SSL connections and database URL configuration

* feat(config): update Redis configuration to use TLS in configurre name instead of SSL

* fix(database): remove default values for DatabaseURL and SSLMode in DatabaseConfig

* chore(.gitignore): add cloudreve built binary to ignore list
This commit is contained in:
charlieJ107
2025-06-23 10:12:20 +01:00
committed by GitHub
parent fec549f5ec
commit 1bd62e8feb
6 changed files with 85 additions and 62 deletions

View File

@@ -24,6 +24,10 @@ type Database struct {
Port int
Charset string
UnixSocket bool
// 允许直接使用DATABASE_URL来配置数据库连接
DatabaseURL string
// SSLMode 允许使用SSL连接数据库, 用户可以在sslmode string中添加证书等配置
SSLMode string
}
type SysMode string
@@ -65,11 +69,13 @@ type Slave struct {
// Redis 配置
type Redis struct {
Network string
Server string
User string
Password string
DB string
Network string
Server string
User string
Password string
DB string
UseTLS bool
TLSSkipVerify bool
}
// 跨域配置
@@ -85,18 +91,21 @@ type Cors struct {
// RedisConfig Redis服务器配置
var RedisConfig = &Redis{
Network: "tcp",
Server: "",
Password: "",
DB: "0",
Network: "tcp",
Server: "",
Password: "",
DB: "0",
UseTLS: false,
TLSSkipVerify: true,
}
// DatabaseConfig 数据库配置
var DatabaseConfig = &Database{
Charset: "utf8mb4",
DBFile: util.DataPath("cloudreve.db"),
Port: 3306,
UnixSocket: false,
Charset: "utf8mb4",
DBFile: util.DataPath("cloudreve.db"),
Port: 3306,
UnixSocket: false,
DatabaseURL: "",
}
// SystemConfig 系统公用配置