[#2497] Image preview proxy: implemented ffmpeg-based resizing, removed eimp & mogrif...
[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 config :pleroma, Pleroma.Captcha,
55 enabled: true,
56 seconds_valid: 300,
57 method: Pleroma.Captcha.Native
58
59 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
60
61 # Upload configuration
62 config :pleroma, Pleroma.Upload,
63 uploader: Pleroma.Uploaders.Local,
64 filters: [Pleroma.Upload.Filter.Dedupe],
65 link_name: false,
66 proxy_remote: false,
67 proxy_opts: [
68 redirect_on_failure: false,
69 max_body_length: 25 * 1_048_576,
70 http: [
71 follow_redirect: true,
72 pool: :upload
73 ]
74 ]
75
76 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
77
78 config :pleroma, Pleroma.Uploaders.S3,
79 bucket: nil,
80 streaming_enabled: true,
81 public_endpoint: "https://s3.amazonaws.com"
82
83 config :pleroma, :emoji,
84 shortcode_globs: ["/emoji/custom/**/*.png"],
85 pack_extensions: [".png", ".gif"],
86 groups: [
87 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
88 ],
89 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
90 shared_pack_cache_seconds_per_file: 60
91
92 config :pleroma, :uri_schemes,
93 valid_schemes: [
94 "https",
95 "http",
96 "dat",
97 "dweb",
98 "gopher",
99 "ipfs",
100 "ipns",
101 "irc",
102 "ircs",
103 "magnet",
104 "mailto",
105 "mumble",
106 "ssb",
107 "xmpp"
108 ]
109
110 websocket_config = [
111 path: "/websocket",
112 serializer: [
113 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
114 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
115 ],
116 timeout: 60_000,
117 transport_log: false,
118 compress: false
119 ]
120
121 # Configures the endpoint
122 config :pleroma, Pleroma.Web.Endpoint,
123 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
124 url: [host: "localhost"],
125 http: [
126 ip: {127, 0, 0, 1},
127 dispatch: [
128 {:_,
129 [
130 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
131 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
132 {Phoenix.Transports.WebSocket,
133 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
134 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
135 ]}
136 ]
137 ],
138 protocol: "https",
139 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
140 signing_salt: "CqaoopA2",
141 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
142 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
143 secure_cookie_flag: true,
144 extra_cookie_attrs: [
145 "SameSite=Lax"
146 ]
147
148 # Configures Elixir's Logger
149 config :logger, :console,
150 level: :debug,
151 format: "\n$time $metadata[$level] $message\n",
152 metadata: [:request_id]
153
154 config :logger, :ex_syslogger,
155 level: :debug,
156 ident: "pleroma",
157 format: "$metadata[$level] $message",
158 metadata: [:request_id]
159
160 config :quack,
161 level: :warn,
162 meta: [:all],
163 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
164
165 config :mime, :types, %{
166 "application/xml" => ["xml"],
167 "application/xrd+xml" => ["xrd+xml"],
168 "application/jrd+json" => ["jrd+json"],
169 "application/activity+json" => ["activity+json"],
170 "application/ld+json" => ["activity+json"]
171 }
172
173 config :tesla, adapter: Tesla.Adapter.Gun
174 # Configures http settings, upstream proxy etc.
175 config :pleroma, :http,
176 proxy_url: nil,
177 send_user_agent: true,
178 user_agent: :default,
179 adapter: []
180
181 config :pleroma, :instance,
182 name: "Pleroma",
183 email: "example@example.com",
184 notify_email: "noreply@example.com",
185 description: "A Pleroma instance, an alternative fediverse server",
186 limit: 5_000,
187 chat_limit: 5_000,
188 remote_limit: 100_000,
189 upload_limit: 16_000_000,
190 avatar_upload_limit: 2_000_000,
191 background_upload_limit: 4_000_000,
192 banner_upload_limit: 4_000_000,
193 poll_limits: %{
194 max_options: 20,
195 max_option_chars: 200,
196 min_expiration: 0,
197 max_expiration: 365 * 24 * 60 * 60
198 },
199 registrations_open: true,
200 invites_enabled: false,
201 account_activation_required: false,
202 federating: true,
203 federation_incoming_replies_max_depth: 100,
204 federation_reachability_timeout_days: 7,
205 federation_publisher_modules: [
206 Pleroma.Web.ActivityPub.Publisher
207 ],
208 allow_relay: true,
209 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
210 public: true,
211 quarantined_instances: [],
212 managed_config: true,
213 static_dir: "instance/static/",
214 allowed_post_formats: [
215 "text/plain",
216 "text/html",
217 "text/markdown",
218 "text/bbcode"
219 ],
220 mrf_transparency: true,
221 mrf_transparency_exclusions: [],
222 autofollowed_nicknames: [],
223 max_pinned_statuses: 1,
224 attachment_links: false,
225 welcome_user_nickname: nil,
226 welcome_message: nil,
227 max_report_comment_size: 1000,
228 safe_dm_mentions: false,
229 healthcheck: false,
230 remote_post_retention_days: 90,
231 skip_thread_containment: true,
232 limit_to_local_content: :unauthenticated,
233 user_bio_length: 5000,
234 user_name_length: 100,
235 max_account_fields: 10,
236 max_remote_account_fields: 20,
237 account_field_name_length: 512,
238 account_field_value_length: 2048,
239 external_user_synchronization: true,
240 extended_nickname_format: true,
241 cleanup_attachments: false,
242 multi_factor_authentication: [
243 totp: [
244 # digits 6 or 8
245 digits: 6,
246 period: 30
247 ],
248 backup_codes: [
249 number: 5,
250 length: 16
251 ]
252 ]
253
254 config :pleroma, :extensions, output_relationships_in_statuses_by_default: true
255
256 config :pleroma, :feed,
257 post_title: %{
258 max_length: 100,
259 omission: "..."
260 }
261
262 config :pleroma, :markup,
263 # XXX - unfortunately, inline images must be enabled by default right now, because
264 # of custom emoji. Issue #275 discusses defanging that somehow.
265 allow_inline_images: true,
266 allow_headings: false,
267 allow_tables: false,
268 allow_fonts: false,
269 scrub_policy: [
270 Pleroma.HTML.Scrubber.Default,
271 Pleroma.HTML.Transform.MediaProxy
272 ]
273
274 config :pleroma, :frontend_configurations,
275 pleroma_fe: %{
276 theme: "pleroma-dark",
277 logo: "/static/logo.png",
278 background: "/images/city.jpg",
279 redirectRootNoLogin: "/main/all",
280 redirectRootLogin: "/main/friends",
281 showInstanceSpecificPanel: true,
282 scopeOptionsEnabled: false,
283 formattingOptionsEnabled: false,
284 collapseMessageWithSubject: false,
285 hidePostStats: false,
286 hideUserStats: false,
287 scopeCopy: true,
288 subjectLineBehavior: "email",
289 alwaysShowSubjectInput: true
290 },
291 masto_fe: %{
292 showInstanceSpecificPanel: true
293 }
294
295 config :pleroma, :assets,
296 mascots: [
297 pleroma_fox_tan: %{
298 url: "/images/pleroma-fox-tan-smol.png",
299 mime_type: "image/png"
300 },
301 pleroma_fox_tan_shy: %{
302 url: "/images/pleroma-fox-tan-shy.png",
303 mime_type: "image/png"
304 }
305 ],
306 default_mascot: :pleroma_fox_tan
307
308 config :pleroma, :manifest,
309 icons: [
310 %{
311 src: "/static/logo.png",
312 type: "image/png"
313 }
314 ],
315 theme_color: "#282c37",
316 background_color: "#191b22"
317
318 config :pleroma, :activitypub,
319 unfollow_blocked: true,
320 outgoing_blocks: true,
321 follow_handshake_timeout: 500,
322 note_replies_output_limit: 5,
323 sign_object_fetches: true,
324 authorized_fetch_mode: false
325
326 config :pleroma, :streamer,
327 workers: 3,
328 overflow_workers: 2
329
330 config :pleroma, :user, deny_follow_blocked: true
331
332 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
333
334 config :pleroma, :mrf_rejectnonpublic,
335 allow_followersonly: false,
336 allow_direct: false
337
338 config :pleroma, :mrf_hellthread,
339 delist_threshold: 10,
340 reject_threshold: 20
341
342 config :pleroma, :mrf_simple,
343 media_removal: [],
344 media_nsfw: [],
345 federated_timeline_removal: [],
346 report_removal: [],
347 reject: [],
348 accept: [],
349 avatar_removal: [],
350 banner_removal: [],
351 reject_deletes: []
352
353 config :pleroma, :mrf_keyword,
354 reject: [],
355 federated_timeline_removal: [],
356 replace: []
357
358 config :pleroma, :mrf_subchain, match_actor: %{}
359
360 config :pleroma, :mrf_vocabulary,
361 accept: [],
362 reject: []
363
364 config :pleroma, :mrf_object_age,
365 threshold: 172_800,
366 actions: [:delist, :strip_followers]
367
368 config :pleroma, :rich_media,
369 enabled: true,
370 ignore_hosts: [],
371 ignore_tld: ["local", "localdomain", "lan"],
372 parsers: [
373 Pleroma.Web.RichMedia.Parsers.TwitterCard,
374 Pleroma.Web.RichMedia.Parsers.OGP,
375 Pleroma.Web.RichMedia.Parsers.OEmbed
376 ],
377 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
378
379 config :pleroma, :media_proxy,
380 enabled: false,
381 proxy_opts: [
382 redirect_on_failure: false,
383 max_body_length: 25 * 1_048_576,
384 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
385 max_read_duration: 30_000,
386 http: [
387 follow_redirect: true,
388 pool: :media
389 ]
390 ],
391 whitelist: []
392
393 # Note: media preview proxy depends on media proxy to be enabled
394 config :pleroma, :media_preview_proxy,
395 enabled: false,
396 thumbnail_max_width: 400,
397 thumbnail_max_height: 200,
398 proxy_opts: [
399 head_request_max_read_duration: 5_000,
400 max_read_duration: 10_000
401 ]
402
403 config :pleroma, :chat, enabled: true
404
405 config :phoenix, :format_encoders, json: Jason
406
407 config :phoenix, :json_library, Jason
408
409 config :phoenix, :filter_parameters, ["password", "confirm"]
410
411 config :pleroma, :gopher,
412 enabled: false,
413 ip: {0, 0, 0, 0},
414 port: 9999
415
416 config :pleroma, Pleroma.Web.Metadata,
417 providers: [
418 Pleroma.Web.Metadata.Providers.OpenGraph,
419 Pleroma.Web.Metadata.Providers.TwitterCard,
420 Pleroma.Web.Metadata.Providers.RelMe,
421 Pleroma.Web.Metadata.Providers.Feed
422 ],
423 unfurl_nsfw: false
424
425 config :pleroma, :http_security,
426 enabled: true,
427 sts: false,
428 sts_max_age: 31_536_000,
429 ct_max_age: 2_592_000,
430 referrer_policy: "same-origin"
431
432 config :cors_plug,
433 max_age: 86_400,
434 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
435 expose: [
436 "Link",
437 "X-RateLimit-Reset",
438 "X-RateLimit-Limit",
439 "X-RateLimit-Remaining",
440 "X-Request-Id",
441 "Idempotency-Key"
442 ],
443 credentials: true,
444 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
445
446 config :pleroma, Pleroma.User,
447 restricted_nicknames: [
448 ".well-known",
449 "~",
450 "about",
451 "activities",
452 "api",
453 "auth",
454 "check_password",
455 "dev",
456 "friend-requests",
457 "inbox",
458 "internal",
459 "main",
460 "media",
461 "nodeinfo",
462 "notice",
463 "oauth",
464 "objects",
465 "ostatus_subscribe",
466 "pleroma",
467 "proxy",
468 "push",
469 "registration",
470 "relay",
471 "settings",
472 "status",
473 "tag",
474 "user-search",
475 "user_exists",
476 "users",
477 "web"
478 ]
479
480 config :pleroma, Oban,
481 repo: Pleroma.Repo,
482 verbose: false,
483 prune: {:maxlen, 1500},
484 queues: [
485 activity_expiration: 10,
486 federator_incoming: 50,
487 federator_outgoing: 50,
488 web_push: 50,
489 mailer: 10,
490 transmogrifier: 20,
491 scheduled_activities: 10,
492 background: 5,
493 remote_fetcher: 2,
494 attachments_cleanup: 5,
495 new_users_digest: 1
496 ],
497 crontab: [
498 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
499 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
500 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
501 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
502 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
503 ]
504
505 config :pleroma, :workers,
506 retries: [
507 federator_incoming: 5,
508 federator_outgoing: 5
509 ]
510
511 config :auto_linker,
512 opts: [
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 :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
573
574 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
575
576 config :pleroma, Pleroma.ScheduledActivity,
577 daily_user_limit: 25,
578 total_user_limit: 300,
579 enabled: true
580
581 config :pleroma, :email_notifications,
582 digest: %{
583 active: false,
584 interval: 7,
585 inactivity_threshold: 7
586 }
587
588 config :pleroma, :oauth2,
589 token_expires_in: 600,
590 issue_new_refresh_token: true,
591 clean_expired_tokens: false
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,
601 authentication: {60_000, 15},
602 timeline: {500, 3},
603 search: [{1000, 10}, {1000, 30}],
604 app_account_creation: {1_800_000, 25},
605 relations_actions: {10_000, 10},
606 relation_id_action: {60_000, 2},
607 statuses_actions: {10_000, 15},
608 status_id_action: {60_000, 3},
609 password_reset: {1_800_000, 5},
610 account_confirmation_resend: {8_640_000, 5},
611 ap_routes: {60_000, 15}
612
613 config :pleroma, Pleroma.ActivityExpiration, enabled: true
614
615 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
616
617 config :pleroma, :static_fe, enabled: false
618
619 config :pleroma, :web_cache_ttl,
620 activity_pub: nil,
621 activity_pub_question: 30_000
622
623 config :pleroma, :modules, runtime_dir: "instance/modules"
624
625 config :pleroma, configurable_from_database: false
626
627 config :pleroma, Pleroma.Repo,
628 parameters: [gin_fuzzy_search_limit: "500"],
629 prepare: :unnamed
630
631 config :pleroma, :connections_pool,
632 checkin_timeout: 250,
633 max_connections: 250,
634 retry: 1,
635 retry_timeout: 1000,
636 await_up_timeout: 5_000
637
638 config :pleroma, :pools,
639 federation: [
640 size: 50,
641 max_overflow: 10,
642 timeout: 150_000
643 ],
644 media: [
645 size: 50,
646 max_overflow: 10,
647 timeout: 150_000
648 ],
649 upload: [
650 size: 25,
651 max_overflow: 5,
652 timeout: 300_000
653 ],
654 default: [
655 size: 10,
656 max_overflow: 2,
657 timeout: 10_000
658 ]
659
660 config :pleroma, :hackney_pools,
661 federation: [
662 max_connections: 50,
663 timeout: 150_000
664 ],
665 media: [
666 max_connections: 50,
667 timeout: 150_000
668 ],
669 upload: [
670 max_connections: 25,
671 timeout: 300_000
672 ]
673
674 config :pleroma, :restrict_unauthenticated,
675 timelines: %{local: false, federated: false},
676 profiles: %{local: false, remote: false},
677 activities: %{local: false, remote: false}
678
679 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
680
681 # Import environment specific config. This must remain at the bottom
682 # of this file so it overrides the configuration defined above.
683 import_config "#{Mix.env()}.exs"