caddydash/gen/default.go
2025-06-30 15:31:14 +08:00

19 lines
369 B
Go

package gen
var (
DefaultGlobalConfig = CaddyGlobalConfig{
Debug: false,
PortsConfig: CaddyGlobalPortsConfig{
AdminPort: "localhost:2019",
HTTPPort: 80,
HTTPSPort: 443,
},
Metrics: true,
LogConfig: CaddyGlobalLogConfig{
Level: "INFO",
RotateSize: "10MB",
RotateKeep: "10",
RotateKeepForTime: "24h",
},
}
)