Created
February 11, 2021 23:24
-
-
Save ivandeex/0e15193b48b12300e428cae21a4fb9a5 to your computer and use it in GitHub Desktop.
Example rclone.conf for chunker test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 = [email protected] | |
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