2018-06-29 02:24:51 +02:00
|
|
|
# Pleroma instance configuration
|
|
|
|
|
|
|
|
# NOTE: This file should not be committed to a repo or otherwise made public
|
|
|
|
# without removing sensitive information.
|
|
|
|
|
2019-06-22 01:29:49 +02:00
|
|
|
<%= if Code.ensure_loaded?(Config) or not Code.ensure_loaded?(Mix.Config) do
|
2019-06-21 20:56:49 +02:00
|
|
|
"import Config"
|
|
|
|
else
|
|
|
|
"use Mix.Config"
|
|
|
|
end %>
|
2017-11-23 16:22:20 +01:00
|
|
|
|
|
|
|
config :pleroma, Pleroma.Web.Endpoint,
|
2018-12-15 11:00:54 +01:00
|
|
|
url: [host: "<%= domain %>", scheme: "https", port: <%= port %>],
|
2019-07-09 21:57:41 +02:00
|
|
|
http: [ip: {<%= String.replace(listen_ip, ".", ", ") %>}, port: <%= listen_port %>],
|
2019-01-21 01:16:41 +01:00
|
|
|
secret_key_base: "<%= secret %>",
|
|
|
|
signing_salt: "<%= signing_salt %>"
|
2017-11-23 16:22:20 +01:00
|
|
|
|
|
|
|
config :pleroma, :instance,
|
|
|
|
name: "<%= name %>",
|
|
|
|
email: "<%= email %>",
|
2019-04-10 12:57:41 +02:00
|
|
|
notify_email: "<%= notify_email %>",
|
2017-11-23 16:22:20 +01:00
|
|
|
limit: 5000,
|
2020-01-10 17:34:19 +01:00
|
|
|
registrations_open: true
|
2017-11-23 16:22:20 +01:00
|
|
|
|
2018-01-09 12:31:11 +01:00
|
|
|
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
|
2018-04-19 12:29:14 +02:00
|
|
|
#base_url: "https://cache.pleroma.social"
|
2018-01-09 12:31:11 +01:00
|
|
|
|
2017-11-23 16:22:20 +01:00
|
|
|
config :pleroma, Pleroma.Repo,
|
|
|
|
adapter: Ecto.Adapters.Postgres,
|
2018-06-29 02:24:51 +02:00
|
|
|
username: "<%= dbuser %>",
|
2017-11-26 18:57:49 +01:00
|
|
|
password: "<%= dbpass %>",
|
2018-06-29 02:24:51 +02:00
|
|
|
database: "<%= dbname %>",
|
|
|
|
hostname: "<%= dbhost %>",
|
2017-11-23 16:22:20 +01:00
|
|
|
pool_size: 10
|
2018-08-28 01:30:53 +02:00
|
|
|
|
2018-12-06 13:29:04 +01:00
|
|
|
# Configure web push notifications
|
|
|
|
config :web_push_encryption, :vapid_details,
|
|
|
|
subject: "mailto:<%= email %>",
|
|
|
|
public_key: "<%= web_push_public_key %>",
|
|
|
|
private_key: "<%= web_push_private_key %>"
|
|
|
|
|
2019-06-22 11:54:16 +02:00
|
|
|
config :pleroma, :database, rum_enabled: <%= rum_enabled %>
|
2019-06-20 02:59:16 +02:00
|
|
|
config :pleroma, :instance, static_dir: "<%= static_dir %>"
|
|
|
|
config :pleroma, Pleroma.Uploaders.Local, uploads: "<%= uploads_dir %>"
|
|
|
|
|
2018-11-11 07:42:14 +01:00
|
|
|
# Enable Strict-Transport-Security once SSL is working:
|
2018-11-12 16:17:04 +01:00
|
|
|
# config :pleroma, :http_security,
|
2018-11-11 07:42:14 +01:00
|
|
|
# sts: true
|
|
|
|
|
2018-08-28 02:18:24 +02: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-28 01:30:53 +02:00
|
|
|
#
|
2018-08-29 04:49:23 +02:00
|
|
|
# config :pleroma, Pleroma.Uploaders.S3,
|
2018-08-28 02:18:24 +02:00
|
|
|
# bucket: "some-bucket",
|
|
|
|
# public_endpoint: "https://s3.amazonaws.com"
|
2018-08-28 01:30:53 +02:00
|
|
|
#
|
|
|
|
# Configure S3 credentials:
|
|
|
|
# config :ex_aws, :s3,
|
|
|
|
# access_key_id: "xxxxxxxxxxxxx",
|
|
|
|
# secret_access_key: "yyyyyyyyyyyy",
|
|
|
|
# region: "us-east-1",
|
2018-08-28 02:18:24 +02:00
|
|
|
# scheme: "https://"
|
2018-08-28 01:30:53 +02:00
|
|
|
#
|
|
|
|
# For using third-party S3 clones like wasabi, also do:
|
|
|
|
# config :ex_aws, :s3,
|
|
|
|
# host: "s3.wasabisys.com"
|
2018-08-29 03:39:33 +02:00
|
|
|
|
2019-04-20 14:42:19 +02:00
|
|
|
config :joken, default_signer: "<%= jwt_secret %>"
|
2020-01-10 17:34:19 +01:00
|
|
|
|
|
|
|
config :pleroma, configurable_from_database: <%= db_configurable? %>
|
2020-10-12 18:18:39 +02:00
|
|
|
|
|
|
|
<%= if Kernel.length(upload_filters) > 0 do
|
|
|
|
"config :pleroma, Pleroma.Upload, filters: #{inspect(upload_filters)}"
|
|
|
|
end %>
|