change upload limit from 25MB to 1GB
This commit is contained in:
@@ -14,7 +14,7 @@ import (
|
||||
"github.com/minio/minio-go/v7/pkg/credentials"
|
||||
)
|
||||
|
||||
const maxUploadSize = 25 << 20 // 25 MB per file
|
||||
const maxUploadSize = 1 << 30 // 1 GB per file
|
||||
|
||||
var allowedExtensions = map[string]bool{
|
||||
".jpg": true, ".jpeg": true, ".png": true, ".gif": true, ".webp": true,
|
||||
|
||||
Reference in New Issue
Block a user