Skip to content

Instantly share code, notes, and snippets.

@ivandeex
Created February 11, 2021 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivandeex/0e15193b48b12300e428cae21a4fb9a5 to your computer and use it in GitHub Desktop.
Save ivandeex/0e15193b48b12300e428cae21a4fb9a5 to your computer and use it in GitHub Desktop.
Example rclone.conf for chunker test
[TestChunkerLocal]
type = chunker
remote = /tmp
[TestChunkerNometaLocal]
type = chunker
remote = /tmp
meta_format = none
hash_type = none
[TestChunkerChunk3bLocal]
type = chunker
remote = /tmp
chunk_size = 3b
[TestChunkerChunk3bNometaLocal]
type = chunker
remote = /tmp
chunk_size = 3b
meta_format = none
hash_type = none
[TestChunkerChunk3bNoRenameLocal]
type = chunker
remote = /tmp
chunk_size = 3b
transactions = norename
[_TestChunkerOverCrypt]
type = crypt
remote = /tmp/crypt
filename_encryption = standard
directory_name_encryption = true
password = REDACTED
[TestChunkerOverCrypt]
type = chunker
remote = _TestChunkerOverCrypt:
chunk_size = 3b
hash_type = sha1
name_format = *.rcc.###
fail_hard = true
# Extended Test Remotes (require external accounts)
[TestMailru]
type = mailru
user = REDACTED@mail.ru
pass = REDACTED
token = REDACTED
[TestChunkerMailru]
type = chunker
remote = TestMailru:
[TestChunkerChunk50bMailru]
type = chunker
remote = TestMailru:
chunk_size = 50b
[TestS3]
type = s3
provider = AWS
env_auth = false
access_key_id = REDACTED
secret_access_key = REDACTED
region = us-east-1
edndpoint =
acl = private
[TestChunkerS3]
type = chunker
remote = TestS3:
[TestChunkerChunk50bMD5HashS3]
type = chunker
remote = TestS3:
chunk_size = 50b
hash_type = md5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment