Merge branch 'develop' into issue/1934-welcome-email
[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.Gun
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 federating: true,
209 federation_incoming_replies_max_depth: 100,
210 federation_reachability_timeout_days: 7,
211 federation_publisher_modules: [
212 Pleroma.Web.ActivityPub.Publisher
213 ],
214 allow_relay: true,
215 public: true,
216 quarantined_instances: [],
217 managed_config: true,
218 static_dir: "instance/static/",
219 allowed_post_formats: [
220 "text/plain",
221 "text/html",
222 "text/markdown",
223 "text/bbcode"
224 ],
225 autofollowed_nicknames: [],
226 max_pinned_statuses: 1,
227 attachment_links: false,
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, :welcome,
256 direct_message: [
257 enabled: false,
258 sender_nickname: nil,
259 message: nil
260 ],
261 email: [
262 enabled: false,
263 sender: nil,
264 subject: "Welcome to <%= instance_name %>",
265 html: "Welcome to <%= instance_name %>",
266 text: "Welcome to <%= instance_name %>"
267 ]
268
269 config :pleroma, :feed,
270 post_title: %{
271 max_length: 100,
272 omission: "..."
273 }
274
275 config :pleroma, :markup,
276 # XXX - unfortunately, inline images must be enabled by default right now, because
277 # of custom emoji. Issue #275 discusses defanging that somehow.
278 allow_inline_images: true,
279 allow_headings: false,
280 allow_tables: false,
281 allow_fonts: false,
282 scrub_policy: [
283 Pleroma.HTML.Scrubber.Default,
284 Pleroma.HTML.Transform.MediaProxy
285 ]
286
287 config :pleroma, :frontend_configurations,
288 pleroma_fe: %{
289 alwaysShowSubjectInput: true,
290 background: "/images/city.jpg",
291 collapseMessageWithSubject: false,
292 disableChat: false,
293 greentext: false,
294 hideFilteredStatuses: false,
295 hideMutedPosts: false,
296 hidePostStats: false,
297 hideSitename: false,
298 hideUserStats: false,
299 loginMethod: "password",
300 logo: "/static/logo.png",
301 logoMargin: ".1em",
302 logoMask: true,
303 minimalScopesMode: false,
304 noAttachmentLinks: false,
305 nsfwCensorImage: "",
306 postContentType: "text/plain",
307 redirectRootLogin: "/main/friends",
308 redirectRootNoLogin: "/main/all",
309 scopeCopy: true,
310 sidebarRight: false,
311 showFeaturesPanel: true,
312 showInstanceSpecificPanel: false,
313 subjectLineBehavior: "email",
314 theme: "pleroma-dark",
315 webPushNotifications: false
316 },
317 masto_fe: %{
318 showInstanceSpecificPanel: true
319 }
320
321 config :pleroma, :assets,
322 mascots: [
323 pleroma_fox_tan: %{
324 url: "/images/pleroma-fox-tan-smol.png",
325 mime_type: "image/png"
326 },
327 pleroma_fox_tan_shy: %{
328 url: "/images/pleroma-fox-tan-shy.png",
329 mime_type: "image/png"
330 }
331 ],
332 default_mascot: :pleroma_fox_tan
333
334 config :pleroma, :manifest,
335 icons: [
336 %{
337 src: "/static/logo.png",
338 type: "image/png"
339 }
340 ],
341 theme_color: "#282c37",
342 background_color: "#191b22"
343
344 config :pleroma, :activitypub,
345 unfollow_blocked: true,
346 outgoing_blocks: true,
347 follow_handshake_timeout: 500,
348 note_replies_output_limit: 5,
349 sign_object_fetches: true,
350 authorized_fetch_mode: false
351
352 config :pleroma, :streamer,
353 workers: 3,
354 overflow_workers: 2
355
356 config :pleroma, :user, deny_follow_blocked: true
357
358 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
359
360 config :pleroma, :mrf_rejectnonpublic,
361 allow_followersonly: false,
362 allow_direct: false
363
364 config :pleroma, :mrf_hellthread,
365 delist_threshold: 10,
366 reject_threshold: 20
367
368 config :pleroma, :mrf_simple,
369 media_removal: [],
370 media_nsfw: [],
371 federated_timeline_removal: [],
372 report_removal: [],
373 reject: [],
374 accept: [],
375 avatar_removal: [],
376 banner_removal: [],
377 reject_deletes: []
378
379 config :pleroma, :mrf_keyword,
380 reject: [],
381 federated_timeline_removal: [],
382 replace: []
383
384 config :pleroma, :mrf_subchain, match_actor: %{}
385
386 config :pleroma, :mrf_activity_expiration, days: 365
387
388 config :pleroma, :mrf_vocabulary,
389 accept: [],
390 reject: []
391
392 config :pleroma, :mrf_object_age,
393 threshold: 172_800,
394 actions: [:delist, :strip_followers]
395
396 config :pleroma, :rich_media,
397 enabled: true,
398 ignore_hosts: [],
399 ignore_tld: ["local", "localdomain", "lan"],
400 parsers: [
401 Pleroma.Web.RichMedia.Parsers.TwitterCard,
402 Pleroma.Web.RichMedia.Parsers.OEmbed
403 ],
404 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
405
406 config :pleroma, :media_proxy,
407 enabled: false,
408 invalidation: [
409 enabled: false,
410 provider: Pleroma.Web.MediaProxy.Invalidation.Script
411 ],
412 proxy_opts: [
413 redirect_on_failure: false,
414 max_body_length: 25 * 1_048_576,
415 http: [
416 follow_redirect: true,
417 pool: :media
418 ]
419 ],
420 whitelist: []
421
422 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
423 method: :purge,
424 headers: [],
425 options: []
426
427 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
428
429 config :pleroma, :chat, enabled: true
430
431 config :phoenix, :format_encoders, json: Jason
432
433 config :phoenix, :json_library, Jason
434
435 config :phoenix, :filter_parameters, ["password", "confirm"]
436
437 config :pleroma, :gopher,
438 enabled: false,
439 ip: {0, 0, 0, 0},
440 port: 9999
441
442 config :pleroma, Pleroma.Web.Metadata,
443 providers: [
444 Pleroma.Web.Metadata.Providers.OpenGraph,
445 Pleroma.Web.Metadata.Providers.TwitterCard,
446 Pleroma.Web.Metadata.Providers.RelMe,
447 Pleroma.Web.Metadata.Providers.Feed
448 ],
449 unfurl_nsfw: false
450
451 config :pleroma, Pleroma.Web.Preload,
452 providers: [
453 Pleroma.Web.Preload.Providers.Instance
454 ]
455
456 config :pleroma, :http_security,
457 enabled: true,
458 sts: false,
459 sts_max_age: 31_536_000,
460 ct_max_age: 2_592_000,
461 referrer_policy: "same-origin"
462
463 config :cors_plug,
464 max_age: 86_400,
465 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
466 expose: [
467 "Link",
468 "X-RateLimit-Reset",
469 "X-RateLimit-Limit",
470 "X-RateLimit-Remaining",
471 "X-Request-Id",
472 "Idempotency-Key"
473 ],
474 credentials: true,
475 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
476
477 config :pleroma, Pleroma.User,
478 restricted_nicknames: [
479 ".well-known",
480 "~",
481 "about",
482 "activities",
483 "api",
484 "auth",
485 "check_password",
486 "dev",
487 "friend-requests",
488 "inbox",
489 "internal",
490 "main",
491 "media",
492 "nodeinfo",
493 "notice",
494 "oauth",
495 "objects",
496 "ostatus_subscribe",
497 "pleroma",
498 "proxy",
499 "push",
500 "registration",
501 "relay",
502 "settings",
503 "status",
504 "tag",
505 "user-search",
506 "user_exists",
507 "users",
508 "web"
509 ]
510
511 config :pleroma, Oban,
512 repo: Pleroma.Repo,
513 log: false,
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 plugins: [Oban.Plugins.Pruner],
528 crontab: [
529 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
530 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
531 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
532 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
533 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
534 ]
535
536 config :pleroma, :workers,
537 retries: [
538 federator_incoming: 5,
539 federator_outgoing: 5
540 ]
541
542 config :pleroma, Pleroma.Formatter,
543 class: false,
544 rel: "ugc",
545 new_window: false,
546 truncate: false,
547 strip_prefix: false,
548 extra: true,
549 validate_tld: :no_scheme
550
551 config :pleroma, :ldap,
552 enabled: System.get_env("LDAP_ENABLED") == "true",
553 host: System.get_env("LDAP_HOST") || "localhost",
554 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
555 ssl: System.get_env("LDAP_SSL") == "true",
556 sslopts: [],
557 tls: System.get_env("LDAP_TLS") == "true",
558 tlsopts: [],
559 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
560 uid: System.get_env("LDAP_UID") || "cn"
561
562 config :esshd,
563 enabled: false
564
565 oauth_consumer_strategies =
566 System.get_env("OAUTH_CONSUMER_STRATEGIES")
567 |> to_string()
568 |> String.split()
569 |> Enum.map(&hd(String.split(&1, ":")))
570
571 ueberauth_providers =
572 for strategy <- oauth_consumer_strategies do
573 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
574 strategy_module = String.to_atom(strategy_module_name)
575 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
576 end
577
578 config :ueberauth,
579 Ueberauth,
580 base_path: "/oauth",
581 providers: ueberauth_providers
582
583 config :pleroma,
584 :auth,
585 enforce_oauth_admin_scope_usage: true,
586 oauth_consumer_strategies: oauth_consumer_strategies
587
588 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
589
590 config :pleroma, Pleroma.Emails.UserEmail,
591 logo: nil,
592 styling: %{
593 link_color: "#d8a070",
594 background_color: "#2C3645",
595 content_background_color: "#1B2635",
596 header_color: "#d8a070",
597 text_color: "#b9b9ba",
598 text_muted_color: "#b9b9ba"
599 }
600
601 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
602
603 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
604
605 config :pleroma, Pleroma.ScheduledActivity,
606 daily_user_limit: 25,
607 total_user_limit: 300,
608 enabled: true
609
610 config :pleroma, :email_notifications,
611 digest: %{
612 active: false,
613 interval: 7,
614 inactivity_threshold: 7
615 }
616
617 config :pleroma, :oauth2,
618 token_expires_in: 600,
619 issue_new_refresh_token: true,
620 clean_expired_tokens: false
621
622 config :pleroma, :database, rum_enabled: false
623
624 config :pleroma, :env, Mix.env()
625
626 config :http_signatures,
627 adapter: Pleroma.Signature
628
629 config :pleroma, :rate_limit,
630 authentication: {60_000, 15},
631 timeline: {500, 3},
632 search: [{1000, 10}, {1000, 30}],
633 app_account_creation: {1_800_000, 25},
634 relations_actions: {10_000, 10},
635 relation_id_action: {60_000, 2},
636 statuses_actions: {10_000, 15},
637 status_id_action: {60_000, 3},
638 password_reset: {1_800_000, 5},
639 account_confirmation_resend: {8_640_000, 5},
640 ap_routes: {60_000, 15}
641
642 config :pleroma, Pleroma.ActivityExpiration, enabled: true
643
644 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
645
646 config :pleroma, :static_fe, enabled: false
647
648 config :pleroma, :web_cache_ttl,
649 activity_pub: nil,
650 activity_pub_question: 30_000
651
652 config :pleroma, :modules, runtime_dir: "instance/modules"
653
654 config :pleroma, configurable_from_database: false
655
656 config :pleroma, Pleroma.Repo,
657 parameters: [gin_fuzzy_search_limit: "500"],
658 prepare: :unnamed
659
660 config :pleroma, :connections_pool,
661 reclaim_multiplier: 0.1,
662 connection_acquisition_wait: 250,
663 connection_acquisition_retries: 5,
664 max_connections: 250,
665 max_idle_time: 30_000,
666 retry: 0,
667 await_up_timeout: 5_000
668
669 config :pleroma, :pools,
670 federation: [
671 size: 50,
672 max_waiting: 10
673 ],
674 media: [
675 size: 50,
676 max_waiting: 10
677 ],
678 upload: [
679 size: 25,
680 max_waiting: 5
681 ],
682 default: [
683 size: 10,
684 max_waiting: 2
685 ]
686
687 config :pleroma, :hackney_pools,
688 federation: [
689 max_connections: 50,
690 timeout: 150_000
691 ],
692 media: [
693 max_connections: 50,
694 timeout: 150_000
695 ],
696 upload: [
697 max_connections: 25,
698 timeout: 300_000
699 ]
700
701 config :pleroma, :restrict_unauthenticated,
702 timelines: %{local: false, federated: false},
703 profiles: %{local: false, remote: false},
704 activities: %{local: false, remote: false}
705
706 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
707
708 config :pleroma, :mrf,
709 policies: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
710 transparency: true,
711 transparency_exclusions: []
712
713 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
714
715 config :ex_aws, http_client: Pleroma.HTTP.ExAws
716
717 config :pleroma, :instances_favicons, enabled: false
718
719 # Import environment specific config. This must remain at the bottom
720 # of this file so it overrides the configuration defined above.
721 import_config "#{Mix.env()}.exs"