pleroma/lib/mix/tasks/sample_config.eex

44 lines
1.0 KiB
Elixir
Raw Normal View History

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