- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for MINIO_COMPRESS_MIME_TYPES (0.13 seconds)
-
internal/config/compress/legacy.go
EnvCompressAllowEncryptionLegacy = "MINIO_COMPRESS_ALLOW_ENCRYPTION" EnvCompressExtensionsLegacy = "MINIO_COMPRESS_EXTENSIONS" EnvCompressMimeTypesLegacy2 = "MINIO_COMPRESS_MIME_TYPES" ) // SetCompressionConfig - One time migration code needed, for migrating from older config to new for Compression. func SetCompressionConfig(s config.Config, cfg Config) { if !cfg.Enabled {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sat Sep 06 17:37:10 GMT 2025 - 1.9K bytes - Click Count (0) -
internal/config/compress/compress.go
} cfg.MimeTypes = mimeTypes } if compressMimeTypesLegacy2 != "" { mimeTypes, err := parseCompressIncludes(compressMimeTypesLegacy2) if err != nil { return cfg, fmt.Errorf("%s: Invalid MINIO_COMPRESS_MIME_TYPES value (`%s`)", err, mimeTypes) } cfg.MimeTypes = mimeTypes } return cfg, nilCreated: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sat Sep 06 17:37:10 GMT 2025 - 5K bytes - Click Count (0) -
internal/config/errors.go
"", ) ErrInvalidCompressionIncludesValue = newErrFn( "Invalid compression include value", "Please check the passed value", "Compress extensions/mime-types are delimited by `,`. For eg, MINIO_COMPRESS_MIME_TYPES=\"A,B,C\"", ) ErrInvalidReplicationWorkersValue = newErrFn( "Invalid value for replication workers", "", "MINIO_API_REPLICATION_WORKERS: should be > 0", )
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 9.4K bytes - Click Count (0)