d31208c255f10f8fbd41c10ce1f50d0f727303aa
[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 filename_display_max_length: 30
76
77 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
78
79 config :pleroma, Pleroma.Uploaders.S3,
80 bucket: nil,
81 streaming_enabled: true,
82 public_endpoint: "https://s3.amazonaws.com"
83
84 config :pleroma, :emoji,
85 shortcode_globs: ["/emoji/custom/**/*.png"],
86 pack_extensions: [".png", ".gif"],
87 groups: [
88 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
89 ],
90 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
91 shared_pack_cache_seconds_per_file: 60
92
93 config :pleroma, :uri_schemes,
94 valid_schemes: [
95 "https",
96 "http",
97 "dat",
98 "dweb",
99 "gopher",
100 "hyper",
101 "ipfs",
102 "ipns",
103 "irc",
104 "ircs",
105 "magnet",
106 "mailto",
107 "mumble",
108 "ssb",
109 "xmpp"
110 ]
111
112 websocket_config = [
113 path: "/websocket",
114 serializer: [
115 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
116 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
117 ],
118 timeout: 60_000,
119 transport_log: false,
120 compress: false
121 ]
122
123 # Configures the endpoint
124 config :pleroma, Pleroma.Web.Endpoint,
125 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
126 url: [host: "localhost"],
127 http: [
128 ip: {127, 0, 0, 1},
129 dispatch: [
130 {:_,
131 [
132 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
133 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
134 {Phoenix.Transports.WebSocket,
135 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
136 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
137 ]}
138 ]
139 ],
140 protocol: "https",
141 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
142 signing_salt: "CqaoopA2",
143 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
144 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
145 secure_cookie_flag: true,
146 extra_cookie_attrs: [
147 "SameSite=Lax"
148 ]
149
150 # Configures Elixir's Logger
151 config :logger, :console,
152 level: :debug,
153 format: "\n$time $metadata[$level] $message\n",
154 metadata: [:request_id]
155
156 config :logger, :ex_syslogger,
157 level: :debug,
158 ident: "pleroma",
159 format: "$metadata[$level] $message",
160 metadata: [:request_id]
161
162 config :quack,
163 level: :warn,
164 meta: [:all],
165 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
166
167 config :mime, :types, %{
168 "application/xml" => ["xml"],
169 "application/xrd+xml" => ["xrd+xml"],
170 "application/jrd+json" => ["jrd+json"],
171 "application/activity+json" => ["activity+json"],
172 "application/ld+json" => ["activity+json"]
173 }
174
175 config :tesla, adapter: Tesla.Adapter.Hackney
176
177 # Configures http settings, upstream proxy etc.
178 config :pleroma, :http,
179 proxy_url: nil,
180 send_user_agent: true,
181 user_agent: :default,
182 adapter: []
183
184 config :pleroma, :instance,
185 name: "Pleroma",
186 email: "example@example.com",
187 notify_email: "noreply@example.com",
188 description: "Pleroma: An efficient and flexible fediverse server",
189 background_image: "/images/city.jpg",
190 instance_thumbnail: "/instance/thumbnail.jpeg",
191 limit: 5_000,
192 description_limit: 5_000,
193 chat_limit: 5_000,
194 remote_limit: 100_000,
195 upload_limit: 16_000_000,
196 avatar_upload_limit: 2_000_000,
197 background_upload_limit: 4_000_000,
198 banner_upload_limit: 4_000_000,
199 poll_limits: %{
200 max_options: 20,
201 max_option_chars: 200,
202 min_expiration: 0,
203 max_expiration: 365 * 24 * 60 * 60
204 },
205 registrations_open: true,
206 invites_enabled: false,
207 account_activation_required: false,
208 account_approval_required: false,
209 federating: true,
210 federation_incoming_replies_max_depth: 100,
211 federation_reachability_timeout_days: 7,
212 federation_publisher_modules: [
213 Pleroma.Web.ActivityPub.Publisher
214 ],
215 allow_relay: true,
216 public: true,
217 quarantined_instances: [],
218 managed_config: true,
219 static_dir: "instance/static/",
220 allowed_post_formats: [
221 "text/plain",
222 "text/html",
223 "text/markdown",
224 "text/bbcode"
225 ],
226 autofollowed_nicknames: [],
227 max_pinned_statuses: 1,
228 attachment_links: false,
229 max_report_comment_size: 1000,
230 safe_dm_mentions: false,
231 healthcheck: false,
232 remote_post_retention_days: 90,
233 skip_thread_containment: true,
234 limit_to_local_content: :unauthenticated,
235 user_bio_length: 5000,
236 user_name_length: 100,
237 max_account_fields: 10,
238 max_remote_account_fields: 20,
239 account_field_name_length: 512,
240 account_field_value_length: 2048,
241 registration_reason_length: 500,
242 external_user_synchronization: true,
243 extended_nickname_format: true,
244 cleanup_attachments: false,
245 multi_factor_authentication: [
246 totp: [
247 # digits 6 or 8
248 digits: 6,
249 period: 30
250 ],
251 backup_codes: [
252 number: 5,
253 length: 16
254 ]
255 ],
256 show_reactions: true
257
258 config :pleroma, :welcome,
259 direct_message: [
260 enabled: false,
261 sender_nickname: nil,
262 message: nil
263 ],
264 email: [
265 enabled: false,
266 sender: nil,
267 subject: "Welcome to <%= instance_name %>",
268 html: "Welcome to <%= instance_name %>",
269 text: "Welcome to <%= instance_name %>"
270 ]
271
272 config :pleroma, :feed,
273 post_title: %{
274 max_length: 100,
275 omission: "..."
276 }
277
278 config :pleroma, :markup,
279 # XXX - unfortunately, inline images must be enabled by default right now, because
280 # of custom emoji. Issue #275 discusses defanging that somehow.
281 allow_inline_images: true,
282 allow_headings: false,
283 allow_tables: false,
284 allow_fonts: false,
285 scrub_policy: [
286 Pleroma.HTML.Scrubber.Default,
287 Pleroma.HTML.Transform.MediaProxy
288 ]
289
290 config :pleroma, :frontend_configurations,
291 pleroma_fe: %{
292 alwaysShowSubjectInput: true,
293 background: "/images/city.jpg",
294 collapseMessageWithSubject: false,
295 disableChat: false,
296 greentext: false,
297 hideFilteredStatuses: false,
298 hideMutedPosts: false,
299 hidePostStats: false,
300 hideSitename: false,
301 hideUserStats: false,
302 loginMethod: "password",
303 logo: "/static/logo.png",
304 logoMargin: ".1em",
305 logoMask: true,
306 minimalScopesMode: false,
307 noAttachmentLinks: false,
308 nsfwCensorImage: "",
309 postContentType: "text/plain",
310 redirectRootLogin: "/main/friends",
311 redirectRootNoLogin: "/main/all",
312 scopeCopy: true,
313 sidebarRight: false,
314 showFeaturesPanel: true,
315 showInstanceSpecificPanel: false,
316 subjectLineBehavior: "email",
317 theme: "pleroma-dark",
318 webPushNotifications: false
319 },
320 masto_fe: %{
321 showInstanceSpecificPanel: true
322 }
323
324 config :pleroma, :assets,
325 mascots: [
326 pleroma_fox_tan: %{
327 url: "/images/pleroma-fox-tan-smol.png",
328 mime_type: "image/png"
329 },
330 pleroma_fox_tan_shy: %{
331 url: "/images/pleroma-fox-tan-shy.png",
332 mime_type: "image/png"
333 }
334 ],
335 default_mascot: :pleroma_fox_tan
336
337 config :pleroma, :manifest,
338 icons: [
339 %{
340 src: "/static/logo.png",
341 type: "image/png"
342 }
343 ],
344 theme_color: "#282c37",
345 background_color: "#191b22"
346
347 config :pleroma, :activitypub,
348 unfollow_blocked: true,
349 outgoing_blocks: true,
350 follow_handshake_timeout: 500,
351 note_replies_output_limit: 5,
352 sign_object_fetches: true,
353 authorized_fetch_mode: false
354
355 config :pleroma, :streamer,
356 workers: 3,
357 overflow_workers: 2
358
359 config :pleroma, :user, deny_follow_blocked: true
360
361 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
362
363 config :pleroma, :mrf_rejectnonpublic,
364 allow_followersonly: false,
365 allow_direct: false
366
367 config :pleroma, :mrf_hellthread,
368 delist_threshold: 10,
369 reject_threshold: 20
370
371 config :pleroma, :mrf_simple,
372 media_removal: [],
373 media_nsfw: [],
374 federated_timeline_removal: [],
375 report_removal: [],
376 reject: [],
377 accept: [],
378 avatar_removal: [],
379 banner_removal: [],
380 reject_deletes: []
381
382 config :pleroma, :mrf_keyword,
383 reject: [],
384 federated_timeline_removal: [],
385 replace: []
386
387 config :pleroma, :mrf_subchain, match_actor: %{}
388
389 config :pleroma, :mrf_activity_expiration, days: 365
390
391 config :pleroma, :mrf_vocabulary,
392 accept: [],
393 reject: []
394
395 config :pleroma, :mrf_object_age,
396 threshold: 172_800,
397 actions: [:delist, :strip_followers]
398
399 config :pleroma, :rich_media,
400 enabled: true,
401 ignore_hosts: [],
402 ignore_tld: ["local", "localdomain", "lan"],
403 parsers: [
404 Pleroma.Web.RichMedia.Parsers.TwitterCard,
405 Pleroma.Web.RichMedia.Parsers.OEmbed
406 ],
407 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
408
409 config :pleroma, :media_proxy,
410 enabled: false,
411 invalidation: [
412 enabled: false,
413 provider: Pleroma.Web.MediaProxy.Invalidation.Script
414 ],
415 proxy_opts: [
416 redirect_on_failure: false,
417 max_body_length: 25 * 1_048_576,
418 http: [
419 follow_redirect: true,
420 pool: :media
421 ]
422 ],
423 whitelist: []
424
425 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
426 method: :purge,
427 headers: [],
428 options: []
429
430 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
431
432 config :pleroma, :chat, enabled: true
433
434 config :phoenix, :format_encoders, json: Jason
435
436 config :phoenix, :json_library, Jason
437
438 config :phoenix, :filter_parameters, ["password", "confirm"]
439
440 config :pleroma, :gopher,
441 enabled: false,
442 ip: {0, 0, 0, 0},
443 port: 9999
444
445 config :pleroma, Pleroma.Web.Metadata,
446 providers: [
447 Pleroma.Web.Metadata.Providers.OpenGraph,
448 Pleroma.Web.Metadata.Providers.TwitterCard,
449 Pleroma.Web.Metadata.Providers.RelMe,
450 Pleroma.Web.Metadata.Providers.Feed
451 ],
452 unfurl_nsfw: false
453
454 config :pleroma, Pleroma.Web.Preload,
455 providers: [
456 Pleroma.Web.Preload.Providers.Instance
457 ]
458
459 config :pleroma, :http_security,
460 enabled: true,
461 sts: false,
462 sts_max_age: 31_536_000,
463 ct_max_age: 2_592_000,
464 referrer_policy: "same-origin"
465
466 config :cors_plug,
467 max_age: 86_400,
468 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
469 expose: [
470 "Link",
471 "X-RateLimit-Reset",
472 "X-RateLimit-Limit",
473 "X-RateLimit-Remaining",
474 "X-Request-Id",
475 "Idempotency-Key"
476 ],
477 credentials: true,
478 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
479
480 config :pleroma, Pleroma.User,
481 restricted_nicknames: [
482 ".well-known",
483 "~",
484 "about",
485 "activities",
486 "api",
487 "auth",
488 "check_password",
489 "dev",
490 "friend-requests",
491 "inbox",
492 "internal",
493 "main",
494 "media",
495 "nodeinfo",
496 "notice",
497 "oauth",
498 "objects",
499 "ostatus_subscribe",
500 "pleroma",
501 "proxy",
502 "push",
503 "registration",
504 "relay",
505 "settings",
506 "status",
507 "tag",
508 "user-search",
509 "user_exists",
510 "users",
511 "web"
512 ]
513
514 config :pleroma, Oban,
515 repo: Pleroma.Repo,
516 log: false,
517 queues: [
518 activity_expiration: 10,
519 federator_incoming: 50,
520 federator_outgoing: 50,
521 web_push: 50,
522 mailer: 10,
523 transmogrifier: 20,
524 scheduled_activities: 10,
525 background: 5,
526 remote_fetcher: 2,
527 attachments_cleanup: 5,
528 new_users_digest: 1
529 ],
530 plugins: [Oban.Plugins.Pruner],
531 crontab: [
532 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
533 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
534 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
535 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
536 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
537 ]
538
539 config :pleroma, :workers,
540 retries: [
541 federator_incoming: 5,
542 federator_outgoing: 5
543 ]
544
545 config :pleroma, Pleroma.Formatter,
546 class: false,
547 rel: "ugc",
548 new_window: false,
549 truncate: false,
550 strip_prefix: false,
551 extra: true,
552 validate_tld: :no_scheme
553
554 config :pleroma, :ldap,
555 enabled: System.get_env("LDAP_ENABLED") == "true",
556 host: System.get_env("LDAP_HOST") || "localhost",
557 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
558 ssl: System.get_env("LDAP_SSL") == "true",
559 sslopts: [],
560 tls: System.get_env("LDAP_TLS") == "true",
561 tlsopts: [],
562 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
563 uid: System.get_env("LDAP_UID") || "cn"
564
565 config :esshd,
566 enabled: false
567
568 oauth_consumer_strategies =
569 System.get_env("OAUTH_CONSUMER_STRATEGIES")
570 |> to_string()
571 |> String.split()
572 |> Enum.map(&hd(String.split(&1, ":")))
573
574 ueberauth_providers =
575 for strategy <- oauth_consumer_strategies do
576 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
577 strategy_module = String.to_atom(strategy_module_name)
578 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
579 end
580
581 config :ueberauth,
582 Ueberauth,
583 base_path: "/oauth",
584 providers: ueberauth_providers
585
586 config :pleroma,
587 :auth,
588 enforce_oauth_admin_scope_usage: true,
589 oauth_consumer_strategies: oauth_consumer_strategies
590
591 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
592
593 config :pleroma, Pleroma.Emails.UserEmail,
594 logo: nil,
595 styling: %{
596 link_color: "#d8a070",
597 background_color: "#2C3645",
598 content_background_color: "#1B2635",
599 header_color: "#d8a070",
600 text_color: "#b9b9ba",
601 text_muted_color: "#b9b9ba"
602 }
603
604 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
605
606 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
607
608 config :pleroma, Pleroma.ScheduledActivity,
609 daily_user_limit: 25,
610 total_user_limit: 300,
611 enabled: true
612
613 config :pleroma, :email_notifications,
614 digest: %{
615 active: false,
616 interval: 7,
617 inactivity_threshold: 7
618 }
619
620 config :pleroma, :oauth2,
621 token_expires_in: 600,
622 issue_new_refresh_token: true,
623 clean_expired_tokens: false
624
625 config :pleroma, :database, rum_enabled: false
626
627 config :pleroma, :env, Mix.env()
628
629 config :http_signatures,
630 adapter: Pleroma.Signature
631
632 config :pleroma, :rate_limit,
633 authentication: {60_000, 15},
634 timeline: {500, 3},
635 search: [{1000, 10}, {1000, 30}],
636 app_account_creation: {1_800_000, 25},
637 relations_actions: {10_000, 10},
638 relation_id_action: {60_000, 2},
639 statuses_actions: {10_000, 15},
640 status_id_action: {60_000, 3},
641 password_reset: {1_800_000, 5},
642 account_confirmation_resend: {8_640_000, 5},
643 ap_routes: {60_000, 15}
644
645 config :pleroma, Pleroma.ActivityExpiration, enabled: true
646
647 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
648
649 config :pleroma, :static_fe, enabled: false
650
651 # Example of frontend configuration
652 # This example will make us serve the primary frontend from the
653 # frontends directory within your `:pleroma, :instance, static_dir`.
654 # e.g., instance/static/frontends/pleroma/develop/
655 #
656 # With no frontend configuration, the bundled files from the `static` directory will
657 # be used.
658 #
659 # config :pleroma, :frontends, primary: %{"name" => "pleroma", "ref" => "develop"}
660
661 config :pleroma, :web_cache_ttl,
662 activity_pub: nil,
663 activity_pub_question: 30_000
664
665 config :pleroma, :modules, runtime_dir: "instance/modules"
666
667 config :pleroma, configurable_from_database: false
668
669 config :pleroma, Pleroma.Repo,
670 parameters: [gin_fuzzy_search_limit: "500"],
671 prepare: :unnamed
672
673 config :pleroma, :connections_pool,
674 reclaim_multiplier: 0.1,
675 connection_acquisition_wait: 250,
676 connection_acquisition_retries: 5,
677 max_connections: 250,
678 max_idle_time: 30_000,
679 retry: 0,
680 await_up_timeout: 5_000
681
682 config :pleroma, :pools,
683 federation: [
684 size: 50,
685 max_waiting: 10
686 ],
687 media: [
688 size: 50,
689 max_waiting: 10
690 ],
691 upload: [
692 size: 25,
693 max_waiting: 5
694 ],
695 default: [
696 size: 10,
697 max_waiting: 2
698 ]
699
700 config :pleroma, :hackney_pools,
701 federation: [
702 max_connections: 50,
703 timeout: 150_000
704 ],
705 media: [
706 max_connections: 50,
707 timeout: 150_000
708 ],
709 upload: [
710 max_connections: 25,
711 timeout: 300_000
712 ]
713
714 config :pleroma, :restrict_unauthenticated,
715 timelines: %{local: false, federated: false},
716 profiles: %{local: false, remote: false},
717 activities: %{local: false, remote: false}
718
719 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
720
721 config :pleroma, :mrf,
722 policies: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
723 transparency: true,
724 transparency_exclusions: []
725
726 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
727
728 config :ex_aws, http_client: Pleroma.HTTP.ExAws
729
730 config :pleroma, :instances_favicons, enabled: false
731
732 # Import environment specific config. This must remain at the bottom
733 # of this file so it overrides the configuration defined above.
734 import_config "#{Mix.env()}.exs"