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