sample config: show how amazon s3 support is activated, including third-party clones like wasabi

This commit is contained in:
William Pitcock 2018-08-27 23:30:53 +00:00
parent 4e4b1016ab
commit e95d958b52
2 changed files with 20 additions and 1 deletions

View File

@ -12,7 +12,9 @@ config :pleroma, Pleroma.Repo, types: Pleroma.PostgresTypes
config :pleroma, Pleroma.Upload,
uploads: "uploads",
strip_exif: false
strip_exif: false,
use_s3: false,
s3_bucket: nil
config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]

View File

@ -24,3 +24,20 @@ config :pleroma, Pleroma.Repo,
database: "pleroma_dev",
hostname: "localhost",
pool_size: 10
# Configure S3 support if desired:
#
# config :pleroma, Pleroma.Upload,
# use_s3: true,
# bucket: "some-bucket"
#
# Configure S3 credentials:
# config :ex_aws, :s3,
# access_key_id: "xxxxxxxxxxxxx",
# secret_access_key: "yyyyyyyyyyyy",
# region: "us-east-1",
# scheme: "https://",
#
# For using third-party S3 clones like wasabi, also do:
# config :ex_aws, :s3,
# host: "s3.wasabisys.com"