akkoma/lib/mix/tasks/pleroma/sample_config.eex

31 lines
769 B
Elixir
Raw Normal View History

# Pleroma instance configuration
# NOTE: This file should not be committed to a repo or otherwise made public
# without removing sensitive information.
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
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
#base_url: "https://cache.pleroma.social"
config :pleroma, Pleroma.Repo,
adapter: Ecto.Adapters.Postgres,
username: "<%= dbuser %>",
2017-11-26 10:57:49 -07:00
password: "<%= dbpass %>",
database: "<%= dbname %>",
hostname: "<%= dbhost %>",
pool_size: 10