Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / config / config.exs
1 # .i;;;;i.
2 # iYcviii;vXY:
3 # .YXi .i1c.
4 # .YC. . in7.
5 # .vc. ...... ;1c.
6 # i7, .. .;1;
7 # i7, .. ... .Y1i
8 # ,7v .6MMM@; .YX,
9 # .7;. ..IMMMMMM1 :t7.
10 # .;Y. ;$MMMMMM9. :tc.
11 # vY. .. .nMMM@MMU. ;1v.
12 # i7i ... .#MM@M@C. .....:71i
13 # it: .... $MMM@9;.,i;;;i,;tti
14 # :t7. ..... 0MMMWv.,iii:::,,;St.
15 # .nC. ..... IMMMQ..,::::::,.,czX.
16 # .ct: ....... .ZMMMI..,:::::::,,:76Y.
17 # c2: ......,i..Y$M@t..:::::::,,..inZY
18 # vov ......:ii..c$MBc..,,,,,,,,,,..iI9i
19 # i9Y ......iii:..7@MA,..,,,,,,,,,....;AA:
20 # iIS. ......:ii::..;@MI....,............;Ez.
21 # .I9. ......:i::::...8M1..................C0z.
22 # .z9; ......:i::::,.. .i:...................zWX.
23 # vbv ......,i::::,,. ................. :AQY
24 # c6Y. .,...,::::,,..:t0@@QY. ................ :8bi
25 # :6S. ..,,...,:::,,,..EMMMMMMI. ............... .;bZ,
26 # :6o, .,,,,..:::,,,..i#MMMMMM#v................. YW2.
27 # .n8i ..,,,,,,,::,,,,.. tMMMMM@C:.................. .1Wn
28 # 7Uc. .:::,,,,,::,,,,.. i1t;,..................... .UEi
29 # 7C...::::::::::::,,,,.. .................... vSi.
30 # ;1;...,,::::::,......... .................. Yz:
31 # v97,......... .voC.
32 # izAotX7777777777777777777777777777777777777777Y7n92:
33 # .;CoIIIIIUAA666666699999ZZZZZZZZZZZZZZZZZZZZ6ov.
34 #
35 # !!! ATTENTION !!!
36 # DO NOT EDIT THIS FILE! THIS FILE CONTAINS THE DEFAULT VALUES FOR THE CON-
37 # FIGURATION! EDIT YOUR SECRET FILE (either prod.secret.exs, dev.secret.exs).
38 #
39 # This file is responsible for configuring your application
40 # and its dependencies with the aid of the Mix.Config module.
41 #
42 # This configuration file is loaded before any dependency and
43 # is restricted to this project.
44 use Mix.Config
45
46 # General application configuration
47 config :pleroma, ecto_repos: [Pleroma.Repo]
48
49 config :pleroma, Pleroma.Repo,
50 types: Pleroma.PostgresTypes,
51 telemetry_event: [Pleroma.Repo.Instrumenter],
52 migration_lock: nil
53
54 scheduled_jobs =
55 with digest_config <- Application.get_env(:pleroma, :email_notifications)[:digest],
56 true <- digest_config[:active] do
57 [{digest_config[:schedule], {Pleroma.Daemons.DigestEmailDaemon, :perform, []}}]
58 else
59 _ -> []
60 end
61
62 config :pleroma, Pleroma.Scheduler,
63 global: true,
64 overlap: true,
65 timezone: :utc,
66 jobs: scheduled_jobs
67
68 config :pleroma, Pleroma.Captcha,
69 enabled: true,
70 seconds_valid: 300,
71 method: Pleroma.Captcha.Native
72
73 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
74
75 config :pleroma, :hackney_pools,
76 federation: [
77 max_connections: 50,
78 timeout: 150_000
79 ],
80 media: [
81 max_connections: 50,
82 timeout: 150_000
83 ],
84 upload: [
85 max_connections: 25,
86 timeout: 300_000
87 ]
88
89 # Upload configuration
90 config :pleroma, Pleroma.Upload,
91 uploader: Pleroma.Uploaders.Local,
92 filters: [Pleroma.Upload.Filter.Dedupe],
93 link_name: false,
94 proxy_remote: false,
95 proxy_opts: [
96 redirect_on_failure: false,
97 max_body_length: 25 * 1_048_576,
98 http: [
99 follow_redirect: true,
100 pool: :upload
101 ]
102 ]
103
104 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
105
106 config :pleroma, Pleroma.Uploaders.S3,
107 bucket: nil,
108 streaming_enabled: true,
109 public_endpoint: "https://s3.amazonaws.com"
110
111 config :pleroma, :emoji,
112 shortcode_globs: ["/emoji/custom/**/*.png"],
113 pack_extensions: [".png", ".gif"],
114 groups: [
115 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
116 ],
117 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
118 shared_pack_cache_seconds_per_file: 60
119
120 config :pleroma, :uri_schemes,
121 valid_schemes: [
122 "https",
123 "http",
124 "dat",
125 "dweb",
126 "gopher",
127 "ipfs",
128 "ipns",
129 "irc",
130 "ircs",
131 "magnet",
132 "mailto",
133 "mumble",
134 "ssb",
135 "xmpp"
136 ]
137
138 websocket_config = [
139 path: "/websocket",
140 serializer: [
141 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
142 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
143 ],
144 timeout: 60_000,
145 transport_log: false,
146 compress: false
147 ]
148
149 # Configures the endpoint
150 config :pleroma, Pleroma.Web.Endpoint,
151 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
152 url: [host: "localhost"],
153 http: [
154 ip: {127, 0, 0, 1},
155 dispatch: [
156 {:_,
157 [
158 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
159 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
160 {Phoenix.Transports.WebSocket,
161 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
162 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
163 ]}
164 ]
165 ],
166 protocol: "https",
167 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
168 signing_salt: "CqaoopA2",
169 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
170 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
171 secure_cookie_flag: true,
172 extra_cookie_attrs: [
173 "SameSite=Lax"
174 ]
175
176 # Configures Elixir's Logger
177 config :logger, :console,
178 level: :debug,
179 format: "\n$time $metadata[$level] $message\n",
180 metadata: [:request_id]
181
182 config :logger, :ex_syslogger,
183 level: :debug,
184 ident: "pleroma",
185 format: "$metadata[$level] $message",
186 metadata: [:request_id]
187
188 config :quack,
189 level: :warn,
190 meta: [:all],
191 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
192
193 config :mime, :types, %{
194 "application/xml" => ["xml"],
195 "application/xrd+xml" => ["xrd+xml"],
196 "application/jrd+json" => ["jrd+json"],
197 "application/activity+json" => ["activity+json"],
198 "application/ld+json" => ["activity+json"]
199 }
200
201 config :tesla, adapter: Tesla.Adapter.Hackney
202
203 # Configures http settings, upstream proxy etc.
204 config :pleroma, :http,
205 proxy_url: nil,
206 send_user_agent: true,
207 user_agent: :default,
208 adapter: [
209 ssl_options: [
210 # Workaround for remote server certificate chain issues
211 partial_chain: &:hackney_connect.partial_chain/1,
212 # We don't support TLS v1.3 yet
213 versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
214 ]
215 ]
216
217 config :pleroma, :instance,
218 name: "Pleroma",
219 email: "example@example.com",
220 notify_email: "noreply@example.com",
221 description: "A Pleroma instance, an alternative fediverse server",
222 limit: 5_000,
223 chat_limit: 5_000,
224 remote_limit: 100_000,
225 upload_limit: 16_000_000,
226 avatar_upload_limit: 2_000_000,
227 background_upload_limit: 4_000_000,
228 banner_upload_limit: 4_000_000,
229 poll_limits: %{
230 max_options: 20,
231 max_option_chars: 200,
232 min_expiration: 0,
233 max_expiration: 365 * 24 * 60 * 60
234 },
235 registrations_open: true,
236 federating: true,
237 federation_incoming_replies_max_depth: 100,
238 federation_reachability_timeout_days: 7,
239 federation_publisher_modules: [
240 Pleroma.Web.ActivityPub.Publisher
241 ],
242 allow_relay: true,
243 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
244 public: true,
245 quarantined_instances: [],
246 managed_config: true,
247 static_dir: "instance/static/",
248 allowed_post_formats: [
249 "text/plain",
250 "text/html",
251 "text/markdown",
252 "text/bbcode"
253 ],
254 mrf_transparency: true,
255 mrf_transparency_exclusions: [],
256 staff_transparency: [],
257 autofollowed_nicknames: [],
258 max_pinned_statuses: 1,
259 no_attachment_links: true,
260 welcome_user_nickname: nil,
261 welcome_message: nil,
262 max_report_comment_size: 1000,
263 safe_dm_mentions: false,
264 healthcheck: false,
265 remote_post_retention_days: 90,
266 skip_thread_containment: true,
267 limit_to_local_content: :unauthenticated,
268 user_bio_length: 5000,
269 user_name_length: 100,
270 max_account_fields: 10,
271 max_remote_account_fields: 20,
272 account_field_name_length: 512,
273 account_field_value_length: 2048,
274 external_user_synchronization: true,
275 extended_nickname_format: true
276
277 config :pleroma, :feed,
278 post_title: %{
279 max_length: 100,
280 omission: "..."
281 }
282
283 config :pleroma, :markup,
284 # XXX - unfortunately, inline images must be enabled by default right now, because
285 # of custom emoji. Issue #275 discusses defanging that somehow.
286 allow_inline_images: true,
287 allow_headings: false,
288 allow_tables: false,
289 allow_fonts: false,
290 scrub_policy: [
291 Pleroma.HTML.Scrubber.Default,
292 Pleroma.HTML.Transform.MediaProxy
293 ]
294
295 config :pleroma, :frontend_configurations,
296 pleroma_fe: %{
297 theme: "pleroma-dark",
298 logo: "/static/logo.png",
299 background: "/images/city.jpg",
300 redirectRootNoLogin: "/main/all",
301 redirectRootLogin: "/main/friends",
302 showInstanceSpecificPanel: true,
303 scopeOptionsEnabled: false,
304 formattingOptionsEnabled: false,
305 collapseMessageWithSubject: false,
306 hidePostStats: false,
307 hideUserStats: false,
308 scopeCopy: true,
309 subjectLineBehavior: "email",
310 alwaysShowSubjectInput: true
311 },
312 masto_fe: %{
313 showInstanceSpecificPanel: true
314 }
315
316 config :pleroma, :assets,
317 mascots: [
318 pleroma_fox_tan: %{
319 url: "/images/pleroma-fox-tan-smol.png",
320 mime_type: "image/png"
321 },
322 pleroma_fox_tan_shy: %{
323 url: "/images/pleroma-fox-tan-shy.png",
324 mime_type: "image/png"
325 }
326 ],
327 default_mascot: :pleroma_fox_tan
328
329 config :pleroma, :manifest,
330 icons: [
331 %{
332 src: "/static/logo.png",
333 type: "image/png"
334 }
335 ],
336 theme_color: "#282c37",
337 background_color: "#191b22"
338
339 config :pleroma, :activitypub,
340 unfollow_blocked: true,
341 outgoing_blocks: true,
342 follow_handshake_timeout: 500,
343 sign_object_fetches: true
344
345 config :pleroma, :streamer,
346 workers: 3,
347 overflow_workers: 2
348
349 config :pleroma, :user, deny_follow_blocked: true
350
351 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
352
353 config :pleroma, :mrf_rejectnonpublic,
354 allow_followersonly: false,
355 allow_direct: false
356
357 config :pleroma, :mrf_hellthread,
358 delist_threshold: 10,
359 reject_threshold: 20
360
361 config :pleroma, :mrf_simple,
362 media_removal: [],
363 media_nsfw: [],
364 federated_timeline_removal: [],
365 report_removal: [],
366 reject: [],
367 accept: [],
368 avatar_removal: [],
369 banner_removal: []
370
371 config :pleroma, :mrf_keyword,
372 reject: [],
373 federated_timeline_removal: [],
374 replace: []
375
376 config :pleroma, :mrf_subchain, match_actor: %{}
377
378 config :pleroma, :mrf_vocabulary,
379 accept: [],
380 reject: []
381
382 config :pleroma, :mrf_object_age,
383 threshold: 172_800,
384 actions: [:delist, :strip_followers]
385
386 config :pleroma, :rich_media,
387 enabled: true,
388 ignore_hosts: [],
389 ignore_tld: ["local", "localdomain", "lan"],
390 parsers: [
391 Pleroma.Web.RichMedia.Parsers.TwitterCard,
392 Pleroma.Web.RichMedia.Parsers.OGP,
393 Pleroma.Web.RichMedia.Parsers.OEmbed
394 ],
395 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
396
397 config :pleroma, :media_proxy,
398 enabled: false,
399 proxy_opts: [
400 redirect_on_failure: false,
401 max_body_length: 25 * 1_048_576,
402 http: [
403 follow_redirect: true,
404 pool: :media
405 ]
406 ],
407 whitelist: []
408
409 config :pleroma, :chat, enabled: true
410
411 config :phoenix, :format_encoders, json: Jason
412
413 config :phoenix, :json_library, Jason
414
415 config :pleroma, :gopher,
416 enabled: false,
417 ip: {0, 0, 0, 0},
418 port: 9999
419
420 config :pleroma, Pleroma.Web.Metadata,
421 providers: [
422 Pleroma.Web.Metadata.Providers.OpenGraph,
423 Pleroma.Web.Metadata.Providers.TwitterCard,
424 Pleroma.Web.Metadata.Providers.RelMe,
425 Pleroma.Web.Metadata.Providers.Feed
426 ],
427 unfurl_nsfw: false
428
429 config :pleroma, :http_security,
430 enabled: true,
431 sts: false,
432 sts_max_age: 31_536_000,
433 ct_max_age: 2_592_000,
434 referrer_policy: "same-origin"
435
436 config :cors_plug,
437 max_age: 86_400,
438 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
439 expose: [
440 "Link",
441 "X-RateLimit-Reset",
442 "X-RateLimit-Limit",
443 "X-RateLimit-Remaining",
444 "X-Request-Id",
445 "Idempotency-Key"
446 ],
447 credentials: true,
448 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
449
450 config :pleroma, Pleroma.User,
451 restricted_nicknames: [
452 ".well-known",
453 "~",
454 "about",
455 "activities",
456 "api",
457 "auth",
458 "check_password",
459 "dev",
460 "friend-requests",
461 "inbox",
462 "internal",
463 "main",
464 "media",
465 "nodeinfo",
466 "notice",
467 "oauth",
468 "objects",
469 "ostatus_subscribe",
470 "pleroma",
471 "proxy",
472 "push",
473 "registration",
474 "relay",
475 "settings",
476 "status",
477 "tag",
478 "user-search",
479 "user_exists",
480 "users",
481 "web"
482 ]
483
484 config :pleroma, Oban,
485 repo: Pleroma.Repo,
486 verbose: false,
487 prune: {:maxlen, 1500},
488 queues: [
489 activity_expiration: 10,
490 federator_incoming: 50,
491 federator_outgoing: 50,
492 web_push: 50,
493 mailer: 10,
494 transmogrifier: 20,
495 scheduled_activities: 10,
496 background: 5,
497 attachments_cleanup: 5
498 ]
499
500 config :pleroma, :workers,
501 retries: [
502 federator_incoming: 5,
503 federator_outgoing: 5
504 ]
505
506 config :pleroma, :fetch_initial_posts,
507 enabled: false,
508 pages: 5
509
510 config :auto_linker,
511 opts: [
512 scheme: true,
513 extra: true,
514 # TODO: Set to :no_scheme when it works properly
515 validate_tld: true,
516 class: false,
517 strip_prefix: false,
518 new_window: false,
519 rel: "ugc"
520 ]
521
522 config :pleroma, :ldap,
523 enabled: System.get_env("LDAP_ENABLED") == "true",
524 host: System.get_env("LDAP_HOST") || "localhost",
525 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
526 ssl: System.get_env("LDAP_SSL") == "true",
527 sslopts: [],
528 tls: System.get_env("LDAP_TLS") == "true",
529 tlsopts: [],
530 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
531 uid: System.get_env("LDAP_UID") || "cn"
532
533 config :esshd,
534 enabled: false
535
536 oauth_consumer_strategies =
537 System.get_env("OAUTH_CONSUMER_STRATEGIES")
538 |> to_string()
539 |> String.split()
540 |> Enum.map(&hd(String.split(&1, ":")))
541
542 ueberauth_providers =
543 for strategy <- oauth_consumer_strategies do
544 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
545 strategy_module = String.to_atom(strategy_module_name)
546 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
547 end
548
549 config :ueberauth,
550 Ueberauth,
551 base_path: "/oauth",
552 providers: ueberauth_providers
553
554 config :pleroma,
555 :auth,
556 enforce_oauth_admin_scope_usage: true,
557 oauth_consumer_strategies: oauth_consumer_strategies
558
559 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
560
561 config :pleroma, Pleroma.Emails.UserEmail,
562 logo: nil,
563 styling: %{
564 link_color: "#d8a070",
565 background_color: "#2C3645",
566 content_background_color: "#1B2635",
567 header_color: "#d8a070",
568 text_color: "#b9b9ba",
569 text_muted_color: "#b9b9ba"
570 }
571
572 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
573
574 config :pleroma, Pleroma.ScheduledActivity,
575 daily_user_limit: 25,
576 total_user_limit: 300,
577 enabled: true
578
579 config :pleroma, :email_notifications,
580 digest: %{
581 active: false,
582 schedule: "0 0 * * 0",
583 interval: 7,
584 inactivity_threshold: 7
585 }
586
587 config :pleroma, :oauth2,
588 token_expires_in: 600,
589 issue_new_refresh_token: true,
590 clean_expired_tokens: false,
591 clean_expired_tokens_interval: 86_400_000
592
593 config :pleroma, :database, rum_enabled: false
594
595 config :pleroma, :env, Mix.env()
596
597 config :http_signatures,
598 adapter: Pleroma.Signature
599
600 config :pleroma, :rate_limit, authentication: {60_000, 15}
601
602 config :pleroma, Pleroma.ActivityExpiration, enabled: true
603
604 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
605
606 config :pleroma, :static_fe, enabled: false
607
608 config :pleroma, :web_cache_ttl,
609 activity_pub: nil,
610 activity_pub_question: 30_000
611
612 config :pleroma, :modules, runtime_dir: "instance/modules"
613
614 config :pleroma, configurable_from_database: false
615
616 config :swarm, node_blacklist: [~r/myhtml_.*$/]
617 # Import environment specific config. This must remain at the bottom
618 # of this file so it overrides the configuration defined above.
619 import_config "#{Mix.env()}.exs"