2017-11-23 10:22:20 -05:00
|
|
|
use Mix.Config
|
|
|
|
|
|
|
|
config :pleroma, Pleroma.Web.Endpoint,
|
|
|
|
url: [host: "<%= domain %>", scheme: "https", port: 443],
|
|
|
|
secret_key_base: "<%= secret %>"
|
|
|
|
|
|
|
|
config :pleroma, :instance,
|
|
|
|
name: "<%= name %>",
|
|
|
|
email: "<%= email %>",
|
|
|
|
limit: 5000,
|
2018-04-15 19:37:51 -04:00
|
|
|
registrations_open: true,
|
2018-06-12 03:23:45 -04:00
|
|
|
dedupe_media: false
|
2017-11-23 10:22:20 -05:00
|
|
|
|
2018-01-09 06:31:11 -05:00
|
|
|
config :pleroma, :media_proxy,
|
2018-04-19 07:04:29 -04:00
|
|
|
enabled: false,
|
2018-04-19 15:44:11 -04:00
|
|
|
redirect_on_failure: true
|
2018-04-19 06:29:14 -04:00
|
|
|
#base_url: "https://cache.pleroma.social"
|
2018-01-09 06:31:11 -05:00
|
|
|
|
2017-11-23 10:22:20 -05:00
|
|
|
# Configure your database
|
|
|
|
config :pleroma, Pleroma.Repo,
|
|
|
|
adapter: Ecto.Adapters.Postgres,
|
2017-11-26 12:57:49 -05:00
|
|
|
username: "pleroma",
|
|
|
|
password: "<%= dbpass %>",
|
2017-11-23 10:22:20 -05:00
|
|
|
database: "pleroma_dev",
|
|
|
|
hostname: "localhost",
|
|
|
|
pool_size: 10
|
2018-08-27 19:30:53 -04:00
|
|
|
|
2018-08-27 20:18:24 -04:00
|
|
|
# Configure S3 support if desired.
|
|
|
|
# The public S3 endpoint is different depending on region and provider,
|
|
|
|
# consult your S3 provider's documentation for details on what to use.
|
2018-08-27 19:30:53 -04:00
|
|
|
#
|
|
|
|
# config :pleroma, Pleroma.Upload,
|
|
|
|
# use_s3: true,
|
2018-08-27 20:18:24 -04:00
|
|
|
# bucket: "some-bucket",
|
|
|
|
# public_endpoint: "https://s3.amazonaws.com"
|
2018-08-27 19:30:53 -04:00
|
|
|
#
|
|
|
|
# Configure S3 credentials:
|
|
|
|
# config :ex_aws, :s3,
|
|
|
|
# access_key_id: "xxxxxxxxxxxxx",
|
|
|
|
# secret_access_key: "yyyyyyyyyyyy",
|
|
|
|
# region: "us-east-1",
|
2018-08-27 20:18:24 -04:00
|
|
|
# scheme: "https://"
|
2018-08-27 19:30:53 -04:00
|
|
|
#
|
|
|
|
# For using third-party S3 clones like wasabi, also do:
|
|
|
|
# config :ex_aws, :s3,
|
|
|
|
# host: "s3.wasabisys.com"
|
2018-08-28 21:39:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
# 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>"
|
|
|
|
#
|
|
|
|
|