diff options
author | kaniini <nenolod@gmail.com> | 2018-08-30 23:05:01 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2018-08-30 23:05:01 +0000 |
commit | 65e8d47cfb74e76bf966a0340fd5ced184c74fec (patch) | |
tree | 4535e1e1fbc7c52573a29e053ec4a025eb511095 /lib/mix/tasks | |
parent | 1a70d41f8e7ce0eb30242d58077b69816e443c10 (diff) | |
parent | adffad55028a8c43a6f2fcf43376009a43c25cf7 (diff) | |
download | pleroma-65e8d47cfb74e76bf966a0340fd5ced184c74fec.tar.gz pleroma-65e8d47cfb74e76bf966a0340fd5ced184c74fec.zip |
Merge branch 'backendhack' into 'develop'
Flexible Storage Backends
See merge request pleroma/pleroma!304
Diffstat (limited to 'lib/mix/tasks')
-rw-r--r-- | lib/mix/tasks/sample_config.eex | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/lib/mix/tasks/sample_config.eex b/lib/mix/tasks/sample_config.eex index 2acf35ed9..3881ead26 100644 --- a/lib/mix/tasks/sample_config.eex +++ b/lib/mix/tasks/sample_config.eex @@ -29,8 +29,7 @@ config :pleroma, Pleroma.Repo, # The public S3 endpoint is different depending on region and provider, # consult your S3 provider's documentation for details on what to use. # -# config :pleroma, Pleroma.Upload, -# use_s3: true, +# config :pleroma, Pleroma.Uploaders.S3, # bucket: "some-bucket", # public_endpoint: "https://s3.amazonaws.com" # @@ -44,3 +43,21 @@ config :pleroma, Pleroma.Repo, # For using third-party S3 clones like wasabi, also do: # config :ex_aws, :s3, # host: "s3.wasabisys.com" + + +# Configure Openstack Swift support if desired. +# +# Many openstack deployments are different, so config is left very open with +# no assumptions made on which provider you're using. This should allow very +# wide support without needing separate handlers for OVH, Rackspace, etc. +# +# config :pleroma, Pleroma.Uploaders.Swift, +# container: "some-container", +# username: "api-username-yyyy", +# password: "api-key-xxxx", +# tenant_id: "<openstack-project/tenant-id>", +# auth_url: "https://keystone-endpoint.provider.com", +# storage_url: "https://swift-endpoint.prodider.com/v1/AUTH_<tenant>/<container>", +# object_url: "https://cdn-endpoint.provider.com/<container>" +# + |