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