akkoma/config/config.exs

521 lines
14 KiB
Elixir
Raw Normal View History

# .i;;;;i.
# iYcviii;vXY:
# .YXi .i1c.
# .YC. . in7.
# .vc. ...... ;1c.
# i7, .. .;1;
# i7, .. ... .Y1i
# ,7v .6MMM@; .YX,
# .7;. ..IMMMMMM1 :t7.
# .;Y. ;$MMMMMM9. :tc.
# vY. .. .nMMM@MMU. ;1v.
# i7i ... .#MM@M@C. .....:71i
# it: .... $MMM@9;.,i;;;i,;tti
# :t7. ..... 0MMMWv.,iii:::,,;St.
# .nC. ..... IMMMQ..,::::::,.,czX.
# .ct: ....... .ZMMMI..,:::::::,,:76Y.
# c2: ......,i..Y$M@t..:::::::,,..inZY
# vov ......:ii..c$MBc..,,,,,,,,,,..iI9i
# i9Y ......iii:..7@MA,..,,,,,,,,,....;AA:
# iIS. ......:ii::..;@MI....,............;Ez.
# .I9. ......:i::::...8M1..................C0z.
# .z9; ......:i::::,.. .i:...................zWX.
# vbv ......,i::::,,. ................. :AQY
# c6Y. .,...,::::,,..:t0@@QY. ................ :8bi
# :6S. ..,,...,:::,,,..EMMMMMMI. ............... .;bZ,
# :6o, .,,,,..:::,,,..i#MMMMMM#v................. YW2.
# .n8i ..,,,,,,,::,,,,.. tMMMMM@C:.................. .1Wn
# 7Uc. .:::,,,,,::,,,,.. i1t;,..................... .UEi
# 7C...::::::::::::,,,,.. .................... vSi.
# ;1;...,,::::::,......... .................. Yz:
# v97,......... .voC.
# izAotX7777777777777777777777777777777777777777Y7n92:
# .;CoIIIIIUAA666666699999ZZZZZZZZZZZZZZZZZZZZ6ov.
#
# !!! ATTENTION !!!
# DO NOT EDIT THIS FILE! THIS FILE CONTAINS THE DEFAULT VALUES FOR THE CON-
# FIGURATION! EDIT YOUR SECRET FILE (either prod.secret.exs, dev.secret.exs).
#
2017-03-17 16:09:58 +00:00
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
use Mix.Config
# General application configuration
2018-03-30 13:01:53 +00:00
config :pleroma, ecto_repos: [Pleroma.Repo]
2017-03-17 16:09:58 +00:00
2019-01-30 15:32:30 +00:00
config :pleroma, Pleroma.Repo,
types: Pleroma.PostgresTypes,
2019-05-17 09:30:35 +00:00
telemetry_event: [Pleroma.Repo.Instrumenter],
migration_lock: nil
2019-01-30 15:32:30 +00:00
config :pleroma, Pleroma.Captcha,
2018-12-14 23:00:00 +00:00
enabled: false,
seconds_valid: 60,
method: Pleroma.Captcha.Kocaptcha
config :pleroma, :hackney_pools,
federation: [
max_connections: 50,
timeout: 150_000
],
media: [
max_connections: 50,
timeout: 150_000
],
upload: [
max_connections: 25,
timeout: 300_000
]
config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
2018-11-29 20:11:45 +00:00
# Upload configuration
2018-06-26 20:49:57 +00:00
config :pleroma, Pleroma.Upload,
2018-08-28 01:45:53 +00:00
uploader: Pleroma.Uploaders.Local,
2019-03-15 09:11:13 +00:00
filters: [Pleroma.Upload.Filter.Dedupe],
2019-03-14 19:02:48 +00:00
link_name: true,
2018-11-23 16:40:45 +00:00
proxy_remote: false,
proxy_opts: [
redirect_on_failure: false,
max_body_length: 25 * 1_048_576,
http: [
follow_redirect: true,
pool: :upload
]
]
2018-11-29 20:11:45 +00:00
2018-11-23 16:40:45 +00:00
config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
2018-08-28 01:20:54 +00:00
config :pleroma, Pleroma.Uploaders.S3,
bucket: nil,
2018-11-23 16:40:45 +00:00
public_endpoint: "https://s3.amazonaws.com"
2017-03-28 23:39:01 +00:00
2018-11-17 09:14:42 +00:00
config :pleroma, Pleroma.Uploaders.MDII,
2018-11-16 11:41:12 +00:00
cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
files: "https://mdii.sakura.ne.jp"
2018-11-15 05:19:10 +00:00
config :pleroma, :emoji,
shortcode_globs: ["/emoji/custom/**/*.png"],
pack_extensions: [".png", ".gif"],
groups: [
2019-04-02 09:13:34 +00:00
# Put groups that have higher priority than defaults here. Example in `docs/config/custom_emoji.md`
Custom: ["/emoji/*.png", "/emoji/**/*.png"]
],
default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json"
config :pleroma, :uri_schemes,
valid_schemes: [
"https",
"http",
"dat",
"dweb",
"gopher",
"ipfs",
"ipns",
"irc",
"ircs",
"magnet",
"mailto",
"mumble",
"ssb",
"xmpp"
]
2019-01-02 10:39:11 +00:00
websocket_config = [
path: "/websocket",
serializer: [
{Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
{Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
],
timeout: 60_000,
transport_log: false,
compress: false
]
2017-03-17 16:09:58 +00:00
# Configures the endpoint
config :pleroma, Pleroma.Web.Endpoint,
2019-01-30 15:32:30 +00:00
instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
2017-03-17 16:09:58 +00:00
url: [host: "localhost"],
2018-12-17 13:39:59 +00:00
http: [
ip: {127, 0, 0, 1},
2018-12-17 13:39:59 +00:00
dispatch: [
{:_,
[
{"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
2019-02-28 16:58:00 +00:00
{"/websocket", Phoenix.Endpoint.CowboyWebSocket,
{Phoenix.Transports.WebSocket,
{Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
{:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
2018-12-17 13:39:59 +00:00
]}
]
],
2017-03-29 00:05:51 +00:00
protocol: "https",
2017-03-17 16:09:58 +00:00
secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
2018-11-16 20:35:08 +00:00
signing_salt: "CqaoopA2",
2017-03-17 16:09:58 +00:00
render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
2018-08-27 22:40:58 +00:00
pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
secure_cookie_flag: true,
extra_cookie_attrs: [
"SameSite=Lax"
]
2017-03-17 16:09:58 +00:00
# Configures Elixir's Logger
config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
2019-01-02 22:07:48 +00:00
config :logger, :ex_syslogger,
level: :debug,
ident: "pleroma",
format: "$metadata[$level] $message",
2019-01-02 22:07:48 +00:00
metadata: [:request_id]
config :quack,
level: :warn,
meta: [:all],
webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
2017-04-17 11:44:41 +00:00
config :mime, :types, %{
"application/xml" => ["xml"],
2017-12-11 09:37:22 +00:00
"application/xrd+xml" => ["xrd+xml"],
"application/jrd+json" => ["jrd+json"],
2018-04-01 12:58:01 +00:00
"application/activity+json" => ["activity+json"],
"application/ld+json" => ["activity+json"]
2017-04-17 11:44:41 +00:00
}
config :tesla, adapter: Tesla.Adapter.Hackney
2017-12-30 18:02:51 +00:00
# Configures http settings, upstream proxy etc.
config :pleroma, :http,
proxy_url: nil,
send_user_agent: true,
adapter: [
ssl_options: [
# We don't support TLS v1.3 yet
versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
]
]
2017-09-15 08:26:28 +00:00
config :pleroma, :instance,
name: "Pleroma",
email: "example@example.com",
notify_email: "noreply@example.com",
description: "A Pleroma instance, an alternative fediverse server",
limit: 5_000,
2018-12-28 18:57:50 +00:00
remote_limit: 100_000,
upload_limit: 16_000_000,
avatar_upload_limit: 2_000_000,
background_upload_limit: 4_000_000,
banner_upload_limit: 4_000_000,
poll_limits: %{
max_options: 20,
max_option_chars: 200,
min_expiration: 0,
max_expiration: 365 * 24 * 60 * 60
},
2018-03-05 08:26:24 +00:00
registrations_open: true,
federating: true,
federation_reachability_timeout_days: 7,
federation_publisher_modules: [
Pleroma.Web.ActivityPub.Publisher,
Pleroma.Web.Websub,
Pleroma.Web.Salmon
],
2018-08-06 06:18:15 +00:00
allow_relay: true,
rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
public: true,
quarantined_instances: [],
managed_config: true,
static_dir: "instance/static/",
allowed_post_formats: [
"text/plain",
"text/html",
2019-04-26 10:17:57 +00:00
"text/markdown",
"text/bbcode"
],
mrf_transparency: true,
autofollowed_nicknames: [],
2019-01-17 15:50:34 +00:00
max_pinned_statuses: 1,
2019-02-16 15:42:34 +00:00
no_attachment_links: false,
welcome_user_nickname: nil,
2019-02-20 16:51:25 +00:00
welcome_message: nil,
2019-03-20 20:09:36 +00:00
max_report_comment_size: 1000,
safe_dm_mentions: false,
healthcheck: false,
2019-06-03 13:04:39 +00:00
remote_post_retention_days: 90,
skip_thread_containment: true,
limit_to_local_content: :unauthenticated,
dynamic_configuration: false
2017-09-15 08:26:28 +00:00
config :pleroma, :markup,
# XXX - unfortunately, inline images must be enabled by default right now, because
# of custom emoji. Issue #275 discusses defanging that somehow.
allow_inline_images: true,
allow_headings: false,
allow_tables: false,
allow_fonts: false,
scrub_policy: [
Pleroma.HTML.Transform.MediaProxy,
Pleroma.HTML.Scrubber.Default
]
2019-01-23 11:40:57 +00:00
config :pleroma, :frontend_configurations,
pleroma_fe: %{
theme: "pleroma-dark",
logo: "/static/logo.png",
2019-01-28 12:04:51 +00:00
background: "/images/city.jpg",
2019-01-23 11:40:57 +00:00
redirectRootNoLogin: "/main/all",
redirectRootLogin: "/main/friends",
showInstanceSpecificPanel: true,
scopeOptionsEnabled: false,
formattingOptionsEnabled: false,
collapseMessageWithSubject: false,
hidePostStats: false,
hideUserStats: false,
scopeCopy: true,
subjectLineBehavior: "email",
alwaysShowSubjectInput: true
},
masto_fe: %{
showInstanceSpecificPanel: true
2019-01-23 11:40:57 +00:00
}
config :pleroma, :assets,
mascots: [
pleroma_fox_tan: %{
url: "/images/pleroma-fox-tan-smol.png",
mime_type: "image/png"
},
pleroma_fox_tan_shy: %{
url: "/images/pleroma-fox-tan-shy.png",
mime_type: "image/png"
}
],
default_mascot: :pleroma_fox_tan
config :pleroma, :activitypub,
accept_blocks: true,
unfollow_blocked: true,
outgoing_blocks: true,
follow_handshake_timeout: 500
2018-06-09 04:28:11 +00:00
config :pleroma, :user, deny_follow_blocked: true
config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
config :pleroma, :mrf_rejectnonpublic,
allow_followersonly: false,
allow_direct: false
2019-02-03 19:12:23 +00:00
config :pleroma, :mrf_hellthread,
delist_threshold: 10,
reject_threshold: 20
2018-12-22 22:18:31 +00:00
config :pleroma, :mrf_simple,
media_removal: [],
media_nsfw: [],
federated_timeline_removal: [],
report_removal: [],
reject: [],
accept: [],
avatar_removal: [],
banner_removal: []
2019-01-31 15:18:20 +00:00
2019-02-08 09:48:39 +00:00
config :pleroma, :mrf_keyword,
reject: [],
federated_timeline_removal: [],
2019-02-08 09:48:39 +00:00
replace: []
2019-06-02 10:29:15 +00:00
config :pleroma, :mrf_subchain, match_actor: %{}
2019-06-02 09:50:16 +00:00
config :pleroma, :rich_media,
enabled: true,
ignore_hosts: [],
ignore_tld: ["local", "localdomain", "lan"]
config :pleroma, :media_proxy,
enabled: false,
proxy_opts: [
redirect_on_failure: false,
max_body_length: 25 * 1_048_576,
http: [
follow_redirect: true,
pool: :media
]
2019-04-25 23:11:47 +00:00
],
whitelist: []
2018-03-30 13:01:53 +00:00
config :pleroma, :chat, enabled: true
2018-03-30 13:01:53 +00:00
config :phoenix, :format_encoders, json: Jason
2018-03-31 15:51:33 +00:00
config :pleroma, :gopher,
enabled: false,
ip: {0, 0, 0, 0},
port: 9999
2019-04-19 07:50:21 +00:00
config :pleroma, Pleroma.Web.Metadata,
providers: [Pleroma.Web.Metadata.Providers.RelMe],
unfurl_nsfw: false
2018-07-18 00:58:59 +00:00
config :pleroma, :suggestions,
enabled: false,
third_party_engine:
2018-07-18 04:36:20 +00:00
"http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
2018-08-02 09:03:35 +00:00
timeout: 300_000,
limit: 40,
web: "https://vinayaka.distsn.org"
2018-07-14 02:41:09 +00:00
2018-11-12 15:08:02 +00:00
config :pleroma, :http_security,
enabled: true,
sts: false,
sts_max_age: 31_536_000,
ct_max_age: 2_592_000,
referrer_policy: "same-origin"
2018-11-11 05:40:55 +00:00
config :cors_plug,
max_age: 86_400,
methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
expose: [
"Link",
"X-RateLimit-Reset",
"X-RateLimit-Limit",
"X-RateLimit-Remaining",
"X-Request-Id",
"Idempotency-Key"
],
credentials: true,
headers: ["Authorization", "Content-Type", "Idempotency-Key"]
config :pleroma, Pleroma.User,
restricted_nicknames: [
2019-01-10 00:06:03 +00:00
".well-known",
2018-12-26 13:16:41 +00:00
"~",
2019-01-10 00:06:03 +00:00
"about",
"activities",
"api",
2019-01-10 00:06:03 +00:00
"auth",
2019-05-20 22:18:59 +00:00
"check_password",
2019-01-10 00:06:03 +00:00
"dev",
"friend-requests",
"inbox",
"internal",
"main",
"media",
"nodeinfo",
"notice",
"oauth",
2019-01-10 00:06:03 +00:00
"objects",
"ostatus_subscribe",
"pleroma",
"proxy",
"push",
2019-01-10 00:06:03 +00:00
"registration",
"relay",
2019-01-10 00:06:03 +00:00
"settings",
"status",
"tag",
"user-search",
2019-05-20 22:18:59 +00:00
"user_exists",
2019-01-10 00:06:03 +00:00
"users",
"web"
]
2019-01-01 13:46:55 +00:00
config :pleroma, Pleroma.Web.Federator.RetryQueue,
enabled: false,
max_jobs: 20,
initial_timeout: 30,
max_retries: 5
config :pleroma_job_queue, :queues,
federator_incoming: 50,
federator_outgoing: 50,
web_push: 50,
mailer: 10,
transmogrifier: 20,
scheduled_activities: 10,
background: 5
2019-01-28 15:17:17 +00:00
config :pleroma, :fetch_initial_posts,
enabled: false,
pages: 5
2019-02-26 23:32:26 +00:00
config :auto_linker,
opts: [
scheme: true,
extra: true,
2019-06-18 13:08:18 +00:00
# TODO: Set to :no_scheme when it works properly
validate_tld: true,
2019-02-26 23:32:26 +00:00
class: false,
strip_prefix: false,
new_window: false,
rel: false
]
2019-02-22 13:03:43 +00:00
config :pleroma, :ldap,
enabled: System.get_env("LDAP_ENABLED") == "true",
host: System.get_env("LDAP_HOST") || "localhost",
port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
ssl: System.get_env("LDAP_SSL") == "true",
sslopts: [],
2019-03-12 16:20:02 +00:00
tls: System.get_env("LDAP_TLS") == "true",
tlsopts: [],
2019-02-22 13:03:43 +00:00
base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
uid: System.get_env("LDAP_UID") || "cn"
2019-03-31 18:35:10 +00:00
config :esshd,
enabled: false
oauth_consumer_strategies =
System.get_env("OAUTH_CONSUMER_STRATEGIES")
|> to_string()
|> String.split()
|> Enum.map(&hd(String.split(&1, ":")))
ueberauth_providers =
for strategy <- oauth_consumer_strategies do
strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
strategy_module = String.to_atom(strategy_module_name)
{String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
end
2019-03-11 17:37:26 +00:00
config :ueberauth,
Ueberauth,
base_path: "/oauth",
providers: ueberauth_providers
config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
2019-03-11 17:37:26 +00:00
config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail
config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
config :pleroma, Pleroma.ScheduledActivity,
daily_user_limit: 25,
total_user_limit: 300,
enabled: true
config :pleroma, :oauth2,
token_expires_in: 600,
issue_new_refresh_token: true,
clean_expired_tokens: false,
clean_expired_tokens_interval: 86_400_000
config :pleroma, :database, rum_enabled: false
config :pleroma, :env, Mix.env()
config :http_signatures,
adapter: Pleroma.Signature
config :pleroma, :rate_limit,
search: [{1000, 10}, {1000, 30}],
app_account_creation: {1_800_000, 25}
2019-06-11 07:28:39 +00:00
2017-03-17 16:09:58 +00:00
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
2018-03-30 13:01:53 +00:00
import_config "#{Mix.env()}.exs"