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,
|
|
|
|
dedupe_media: true
|
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
|