mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 15:30:06 +08:00
s3: update Scaleway's configuration options - fixes #7507
In order to handle special character, the configuration must specify rclone configuration to use `list_url_encode`.
This commit is contained in:
parent
bce80be2f8
commit
f9429de807
|
@ -3190,8 +3190,8 @@ func setQuirks(opt *Options) {
|
||||||
if opt.MaxUploadParts > 1000 {
|
if opt.MaxUploadParts > 1000 {
|
||||||
opt.MaxUploadParts = 1000
|
opt.MaxUploadParts = 1000
|
||||||
}
|
}
|
||||||
urlEncodeListings = false
|
urlEncodeListings = true
|
||||||
useAlreadyExists = false // untested
|
useAlreadyExists = true
|
||||||
case "SeaweedFS":
|
case "SeaweedFS":
|
||||||
listObjectsV2 = false // untested
|
listObjectsV2 = false // untested
|
||||||
virtualHostStyle = false
|
virtualHostStyle = false
|
||||||
|
|
|
@ -3359,10 +3359,11 @@ endpoint = s3.nl-ams.scw.cloud
|
||||||
access_key_id = SCWXXXXXXXXXXXXXX
|
access_key_id = SCWXXXXXXXXXXXXXX
|
||||||
secret_access_key = 1111111-2222-3333-44444-55555555555555
|
secret_access_key = 1111111-2222-3333-44444-55555555555555
|
||||||
region = nl-ams
|
region = nl-ams
|
||||||
location_constraint =
|
location_constraint = nl-ams
|
||||||
acl = private
|
acl = private
|
||||||
server_side_encryption =
|
upload_cutoff = 5M
|
||||||
storage_class =
|
chunk_size = 5M
|
||||||
|
copy_cutoff = 5M
|
||||||
```
|
```
|
||||||
|
|
||||||
[C14 Cold Storage](https://www.online.net/en/storage/c14-cold-storage) is the low-cost S3 Glacier alternative from Scaleway and it works the same way as on S3 by accepting the "GLACIER" `storage_class`.
|
[C14 Cold Storage](https://www.online.net/en/storage/c14-cold-storage) is the low-cost S3 Glacier alternative from Scaleway and it works the same way as on S3 by accepting the "GLACIER" `storage_class`.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user