diff options
author | 2023-01-08 06:28:58 -0500 | |
---|---|---|
committer | 2023-01-08 12:28:58 +0100 | |
commit | 9859a43b87d01f05ab9b2cbd6085929abbf6479a (patch) | |
tree | 1872376135858a11d3d8fb2a6f48ca9620bb5b08 /docs/configuration | |
parent | [bugfix] fix panic during status delete loop by breaking out early on len(sta... (diff) | |
download | gotosocial-9859a43b87d01f05ab9b2cbd6085929abbf6479a.tar.xz |
[docs] Add s3 ssl variable to storage docs (#1294)
* update storage docs
* add use ssl to example/config.yaml
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/storage.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/configuration/storage.md b/docs/configuration/storage.md index 17c5c7a59..9808669f9 100644 --- a/docs/configuration/storage.md +++ b/docs/configuration/storage.md @@ -36,6 +36,12 @@ storage-s3-endpoint: "" # # Default: false storage-s3-proxy: false +# Bool. Use SSL for S3 connections. +# +# Only set this to 'false' when testing locally. +# +# Default: true +storage-s3-use-ssl: true # String. Access key part of the S3 credentials. # Consider setting this value using environment variables to avoid leaking it via the config file |