remove FIBER_PREFORK

This commit is contained in:
orangix
2026-01-19 19:17:36 +01:00
parent cd4a36c9f7
commit bf849e1cbc

View File

@@ -11,7 +11,6 @@ type config struct {
ImgurId string
ProtocolDetection bool
Secure bool
FiberPrefork bool
ForceWebp bool
ImageCache bool
CleanupInterval time.Duration
@@ -39,7 +38,6 @@ func LoadConfig() {
ImgurId: envString("IMGUR_CLIENT_ID", "546c25a59c58ad7"),
ProtocolDetection: envBool("PROTOCOL_DETECTION"),
Secure: envBool("SECURE"),
FiberPrefork: envBool("FIBER_PREFORK"),
ForceWebp: envBool("FORCE_WEBP"),
Privacy: map[string]interface{}{
"set": os.Getenv("PRIVACY_NOT_COLLECTED") != "",