2017-11-23 08:22:20 -07: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 17:37:51 -06:00
|
|
|
registrations_open: true,
|
2018-06-12 01:23:45 -06:00
|
|
|
dedupe_media: false
|
2017-11-23 08:22:20 -07:00
|
|
|
|
2018-01-09 04:31:11 -07:00
|
|
|
config :pleroma, :media_proxy,
|
2018-04-19 05:04:29 -06:00
|
|
|
enabled: false,
|
2018-04-19 13:44:11 -06:00
|
|
|
redirect_on_failure: true
|
2018-04-19 04:29:14 -06:00
|
|
|
#base_url: "https://cache.pleroma.social"
|
2018-01-09 04:31:11 -07:00
|
|
|
|
2017-11-23 08:22:20 -07:00
|
|
|
# Configure your database
|
|
|
|
config :pleroma, Pleroma.Repo,
|
|
|
|
adapter: Ecto.Adapters.Postgres,
|
2017-11-26 10:57:49 -07:00
|
|
|
username: "pleroma",
|
|
|
|
password: "<%= dbpass %>",
|
2017-11-23 08:22:20 -07:00
|
|
|
database: "pleroma_dev",
|
|
|
|
hostname: "localhost",
|
|
|
|
pool_size: 10
|
2018-08-27 17:30:53 -06:00
|
|
|
|
|
|
|
# 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"
|