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