fix(ft): give more failproof example in README
Without that `ssl` defaults to being disabled, and interacting with AWS S3 with such configuration consistently times out.
This commit is contained in:
parent
5fdf73bc03
commit
1beb588207
|
@ -56,10 +56,13 @@ file_transfer {
|
|||
s3 {
|
||||
enable = true
|
||||
host = "s3.us-east-1.amazonaws.com"
|
||||
port = "443"
|
||||
port = 443
|
||||
access_key_id = "AKIA27EZDDM9XLINWXFE"
|
||||
secret_access_key = "..."
|
||||
bucket = "my-bucket"
|
||||
transport_options = {
|
||||
ssl { enable = true }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue