sample config: show how amazon s3 support is activated, including third-party clones...
authorWilliam Pitcock <nenolod@dereferenced.org>
Mon, 27 Aug 2018 23:30:53 +0000 (23:30 +0000)
committerWilliam Pitcock <nenolod@dereferenced.org>
Mon, 27 Aug 2018 23:30:53 +0000 (23:30 +0000)
config/config.exs
lib/mix/tasks/sample_config.eex

index eaf20e8f993dadae8d78fbfe262d6890a52f2c87..d234d23ebcb59ab5de1bf2dd9973f6076534ae00 100644 (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"]
 
index 6db36fa095c57460d16d4b9d66aa85c8b9618a97..cfb5ef4c0084f46ff7bd5854964060b2a63cc9d5 100644 (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"