mirror of
https://github.com/WJQSERVER-STUDIO/ghproxy.git
synced 2026-02-03 00:01:10 +08:00
2.1.0 --- - RELEASE: v2.1.0正式版发布; - CHANGE: 加入`FreeBSD`与`Darwin`系统支持 - CHANGE: 更新安全政策, v1和24w版本序列生命周期正式结束 - ADD: 加入`timing`中间件记录响应时间 - ADD: 加入`loggin`中间件包装日志输出 - CHANGE: 更新logger版本至v1.3.0 - CHANGE: 改进日志相关 - ADD: 加入日志等级配置项
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package config
|
|
|
|
import (
|
|
"github.com/BurntSushi/toml"
|
|
)
|
|
|
|
type Config struct {
|
|
Server ServerConfig
|
|
Pages PagesConfig
|
|
Log LogConfig
|
|
CORS CORSConfig
|
|
Auth AuthConfig
|
|
Blacklist BlacklistConfig
|
|
Whitelist WhitelistConfig
|
|
RateLimit RateLimitConfig
|
|
}
|
|
|
|
type ServerConfig struct {
|
|
Port int `toml:"port"`
|
|
Host string `toml:"host"`
|
|
SizeLimit int `toml:"sizeLimit"`
|
|
EnableH2C string `toml:"enableH2C"`
|
|
Debug bool `toml:"debug"`
|
|
}
|
|
|
|
type PagesConfig struct {
|
|
Enabled bool `toml:"enabled"`
|
|
StaticDir string `toml:"staticDir"`
|
|
}
|
|
|
|
type LogConfig struct {
|
|
LogFilePath string `toml:"logFilePath"`
|
|
MaxLogSize int `toml:"maxLogSize"`
|
|
Level string `toml:"level"`
|
|
}
|
|
|
|
type CORSConfig struct {
|
|
Enabled bool `toml:"enabled"`
|
|
}
|
|
|
|
type AuthConfig struct {
|
|
Enabled bool `toml:"enabled"`
|
|
AuthMethod string `toml:"authMethod"`
|
|
AuthToken string `toml:"authToken"`
|
|
PassThrough bool `toml:"passThrough"`
|
|
}
|
|
|
|
type BlacklistConfig struct {
|
|
Enabled bool `toml:"enabled"`
|
|
BlacklistFile string `toml:"blacklistFile"`
|
|
}
|
|
|
|
type WhitelistConfig struct {
|
|
Enabled bool `toml:"enabled"`
|
|
WhitelistFile string `toml:"whitelistFile"`
|
|
}
|
|
|
|
type RateLimitConfig struct {
|
|
Enabled bool `toml:"enabled"`
|
|
RateMethod string `toml:"rateMethod"`
|
|
RatePerMinute int `toml:"ratePerMinute"`
|
|
Burst int `toml:"burst"`
|
|
}
|
|
|
|
// LoadConfig 从 TOML 配置文件加载配置
|
|
func LoadConfig(filePath string) (*Config, error) {
|
|
var config Config
|
|
if _, err := toml.DecodeFile(filePath, &config); err != nil {
|
|
return nil, err
|
|
}
|
|
return &config, nil
|
|
}
|