2017-11-23 15:22:20 +00: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 23:37:51 +00:00
|
|
|
registrations_open: true,
|
2018-06-12 07:23:45 +00:00
|
|
|
dedupe_media: false
|
2017-11-23 15:22:20 +00:00
|
|
|
|
2018-01-09 11:31:11 +00:00
|
|
|
config :pleroma, :media_proxy,
|
2018-04-19 11:04:29 +00:00
|
|
|
enabled: false,
|
2018-04-19 19:44:11 +00:00
|
|
|
redirect_on_failure: true
|
2018-04-19 10:29:14 +00:00
|
|
|
#base_url: "https://cache.pleroma.social"
|
2018-01-09 11:31:11 +00:00
|
|
|
|
2017-11-23 15:22:20 +00:00
|
|
|
# Configure your database
|
|
|
|
config :pleroma, Pleroma.Repo,
|
|
|
|
adapter: Ecto.Adapters.Postgres,
|
2017-11-26 17:57:49 +00:00
|
|
|
username: "pleroma",
|
|
|
|
password: "<%= dbpass %>",
|
2017-11-23 15:22:20 +00:00
|
|
|
database: "pleroma_dev",
|
|
|
|
hostname: "localhost",
|
|
|
|
pool_size: 10
|
2018-08-27 23:30:53 +00:00
|
|
|
|
2018-11-11 06:42:14 +00:00
|
|
|
# Enable Strict-Transport-Security once SSL is working:
|
2018-11-12 15:17:04 +00:00
|
|
|
# config :pleroma, :http_security,
|
2018-11-11 06:42:14 +00:00
|
|
|
# sts: true
|
|
|
|
|
2018-08-28 00:18:24 +00: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 23:30:53 +00:00
|
|
|
#
|
2018-08-29 02:49:23 +00:00
|
|
|
# config :pleroma, Pleroma.Uploaders.S3,
|
2018-08-28 00:18:24 +00:00
|
|
|
# bucket: "some-bucket",
|
|
|
|
# public_endpoint: "https://s3.amazonaws.com"
|
2018-08-27 23:30:53 +00:00
|
|
|
#
|
|
|
|
# Configure S3 credentials:
|
|
|
|
# config :ex_aws, :s3,
|
|
|
|
# access_key_id: "xxxxxxxxxxxxx",
|
|
|
|
# secret_access_key: "yyyyyyyyyyyy",
|
|
|
|
# region: "us-east-1",
|
2018-08-28 00:18:24 +00:00
|
|
|
# scheme: "https://"
|
2018-08-27 23:30:53 +00:00
|
|
|
#
|
|
|
|
# For using third-party S3 clones like wasabi, also do:
|
|
|
|
# config :ex_aws, :s3,
|
|
|
|
# host: "s3.wasabisys.com"
|
2018-08-29 01:39:33 +00: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>"
|
|
|
|
#
|
|
|
|
|