mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-25 19:52:48 +00:00
feat(dashboard): enable concurrent chunked upload by default for some storage providers
This commit is contained in:
parent
7c07a4cab9
commit
08e0b4c8f4
|
|
@ -35,6 +35,7 @@ const CosWizard = ({ onSubmit }: AddWizardProps) => {
|
|||
media_meta_exts: ["jpg", "jpeg", "png", "bmp", "webp", "tiff", "avif", "heif"],
|
||||
media_meta_generator_proxy: true,
|
||||
thumb_generator_proxy: true,
|
||||
chunk_concurrency: 3,
|
||||
},
|
||||
file_name_rule: "{uuid}_{originname}",
|
||||
edges: {},
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ const KS3Wizard = ({ onSubmit }: AddWizardProps) => {
|
|||
chunk_size: 25 << 20,
|
||||
media_meta_generator_proxy: true,
|
||||
thumb_generator_proxy: true,
|
||||
chunk_concurrency: 3,
|
||||
},
|
||||
file_name_rule: "{uuid}_{originname}",
|
||||
edges: {},
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ const ObsWizard = ({ onSubmit }: AddWizardProps) => {
|
|||
media_meta_exts: ["png", "jpg", "jpeg", "gif", "bmp", "webp", "tiff"],
|
||||
media_meta_generator_proxy: true,
|
||||
thumb_generator_proxy: true,
|
||||
chunk_concurrency: 3,
|
||||
},
|
||||
file_name_rule: "{uuid}_{originname}",
|
||||
edges: {},
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ const OssWizard = ({ onSubmit }: AddWizardProps) => {
|
|||
media_meta_exts: ["jpg", "jpeg", "png", "gif", "bmp", "webp", "tiff", "heic", "heif"],
|
||||
media_meta_generator_proxy: true,
|
||||
thumb_generator_proxy: true,
|
||||
chunk_concurrency: 3,
|
||||
},
|
||||
file_name_rule: "{uuid}_{originname}",
|
||||
edges: {},
|
||||
|
|
|
|||
|
|
@ -54,6 +54,7 @@ const QiniuWizard = ({ onSubmit }: AddWizardProps) => {
|
|||
media_meta_generator_proxy: true,
|
||||
thumb_generator_proxy: true,
|
||||
custom_proxy: true,
|
||||
chunk_concurrency: 3,
|
||||
},
|
||||
file_name_rule: "{uuid}_{originname}",
|
||||
edges: {},
|
||||
|
|
|
|||
Loading…
Reference in New Issue