Merge branch 'announce-validator' 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 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 background_image: "/images/city.jpg",
187 limit: 5_000,
188 chat_limit: 5_000,
189 remote_limit: 100_000,
190 upload_limit: 16_000_000,
191 avatar_upload_limit: 2_000_000,
192 background_upload_limit: 4_000_000,
193 banner_upload_limit: 4_000_000,
194 poll_limits: %{
195 max_options: 20,
196 max_option_chars: 200,
197 min_expiration: 0,
198 max_expiration: 365 * 24 * 60 * 60
199 },
200 registrations_open: true,
201 invites_enabled: false,
202 account_activation_required: false,
203 federating: true,
204 federation_incoming_replies_max_depth: 100,
205 federation_reachability_timeout_days: 7,
206 federation_publisher_modules: [
207 Pleroma.Web.ActivityPub.Publisher
208 ],
209 allow_relay: true,
210 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
211 public: true,
212 quarantined_instances: [],
213 managed_config: true,
214 static_dir: "instance/static/",
215 allowed_post_formats: [
216 "text/plain",
217 "text/html",
218 "text/markdown",
219 "text/bbcode"
220 ],
221 mrf_transparency: true,
222 mrf_transparency_exclusions: [],
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: "/static/aurora_borealis.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_vocabulary,
373 accept: [],
374 reject: []
375
376 config :pleroma, :mrf_object_age,
377 threshold: 172_800,
378 actions: [:delist, :strip_followers]
379
380 config :pleroma, :rich_media,
381 enabled: true,
382 ignore_hosts: [],
383 ignore_tld: ["local", "localdomain", "lan"],
384 parsers: [
385 Pleroma.Web.RichMedia.Parsers.TwitterCard,
386 Pleroma.Web.RichMedia.Parsers.OGP,
387 Pleroma.Web.RichMedia.Parsers.OEmbed
388 ],
389 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
390
391 config :pleroma, :media_proxy,
392 enabled: false,
393 invalidation: [
394 enabled: false,
395 provider: Pleroma.Web.MediaProxy.Invalidation.Script
396 ],
397 proxy_opts: [
398 redirect_on_failure: false,
399 max_body_length: 25 * 1_048_576,
400 http: [
401 follow_redirect: true,
402 pool: :media
403 ]
404 ],
405 whitelist: []
406
407 config :pleroma, :chat, enabled: true
408
409 config :phoenix, :format_encoders, json: Jason
410
411 config :phoenix, :json_library, Jason
412
413 config :phoenix, :filter_parameters, ["password", "confirm"]
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 remote_fetcher: 2,
498 attachments_cleanup: 5,
499 new_users_digest: 1
500 ],
501 crontab: [
502 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
503 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
504 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
505 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
506 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
507 ]
508
509 config :pleroma, :workers,
510 retries: [
511 federator_incoming: 5,
512 federator_outgoing: 5
513 ]
514
515 config :auto_linker,
516 opts: [
517 extra: true,
518 # TODO: Set to :no_scheme when it works properly
519 validate_tld: true,
520 class: false,
521 strip_prefix: false,
522 new_window: false,
523 rel: "ugc"
524 ]
525
526 config :pleroma, :ldap,
527 enabled: System.get_env("LDAP_ENABLED") == "true",
528 host: System.get_env("LDAP_HOST") || "localhost",
529 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
530 ssl: System.get_env("LDAP_SSL") == "true",
531 sslopts: [],
532 tls: System.get_env("LDAP_TLS") == "true",
533 tlsopts: [],
534 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
535 uid: System.get_env("LDAP_UID") || "cn"
536
537 config :esshd,
538 enabled: false
539
540 oauth_consumer_strategies =
541 System.get_env("OAUTH_CONSUMER_STRATEGIES")
542 |> to_string()
543 |> String.split()
544 |> Enum.map(&hd(String.split(&1, ":")))
545
546 ueberauth_providers =
547 for strategy <- oauth_consumer_strategies do
548 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
549 strategy_module = String.to_atom(strategy_module_name)
550 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
551 end
552
553 config :ueberauth,
554 Ueberauth,
555 base_path: "/oauth",
556 providers: ueberauth_providers
557
558 config :pleroma,
559 :auth,
560 enforce_oauth_admin_scope_usage: true,
561 oauth_consumer_strategies: oauth_consumer_strategies
562
563 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
564
565 config :pleroma, Pleroma.Emails.UserEmail,
566 logo: nil,
567 styling: %{
568 link_color: "#d8a070",
569 background_color: "#2C3645",
570 content_background_color: "#1B2635",
571 header_color: "#d8a070",
572 text_color: "#b9b9ba",
573 text_muted_color: "#b9b9ba"
574 }
575
576 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
577
578 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
579
580 config :pleroma, Pleroma.ScheduledActivity,
581 daily_user_limit: 25,
582 total_user_limit: 300,
583 enabled: true
584
585 config :pleroma, :email_notifications,
586 digest: %{
587 active: false,
588 interval: 7,
589 inactivity_threshold: 7
590 }
591
592 config :pleroma, :oauth2,
593 token_expires_in: 600,
594 issue_new_refresh_token: true,
595 clean_expired_tokens: false
596
597 config :pleroma, :database, rum_enabled: false
598
599 config :pleroma, :env, Mix.env()
600
601 config :http_signatures,
602 adapter: Pleroma.Signature
603
604 config :pleroma, :rate_limit,
605 authentication: {60_000, 15},
606 timeline: {500, 3},
607 search: [{1000, 10}, {1000, 30}],
608 app_account_creation: {1_800_000, 25},
609 relations_actions: {10_000, 10},
610 relation_id_action: {60_000, 2},
611 statuses_actions: {10_000, 15},
612 status_id_action: {60_000, 3},
613 password_reset: {1_800_000, 5},
614 account_confirmation_resend: {8_640_000, 5},
615 ap_routes: {60_000, 15}
616
617 config :pleroma, Pleroma.ActivityExpiration, enabled: true
618
619 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
620
621 config :pleroma, :static_fe, enabled: false
622
623 config :pleroma, :web_cache_ttl,
624 activity_pub: nil,
625 activity_pub_question: 30_000
626
627 config :pleroma, :modules, runtime_dir: "instance/modules"
628
629 config :pleroma, configurable_from_database: false
630
631 config :pleroma, Pleroma.Repo,
632 parameters: [gin_fuzzy_search_limit: "500"],
633 prepare: :unnamed
634
635 config :pleroma, :connections_pool,
636 checkin_timeout: 250,
637 max_connections: 250,
638 retry: 1,
639 retry_timeout: 1000,
640 await_up_timeout: 5_000
641
642 config :pleroma, :pools,
643 federation: [
644 size: 50,
645 max_overflow: 10,
646 timeout: 150_000
647 ],
648 media: [
649 size: 50,
650 max_overflow: 10,
651 timeout: 150_000
652 ],
653 upload: [
654 size: 25,
655 max_overflow: 5,
656 timeout: 300_000
657 ],
658 default: [
659 size: 10,
660 max_overflow: 2,
661 timeout: 10_000
662 ]
663
664 config :pleroma, :hackney_pools,
665 federation: [
666 max_connections: 50,
667 timeout: 150_000
668 ],
669 media: [
670 max_connections: 50,
671 timeout: 150_000
672 ],
673 upload: [
674 max_connections: 25,
675 timeout: 300_000
676 ]
677
678 config :pleroma, :restrict_unauthenticated,
679 timelines: %{local: false, federated: false},
680 profiles: %{local: false, remote: false},
681 activities: %{local: false, remote: false}
682
683 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
684
685 # Import environment specific config. This must remain at the bottom
686 # of this file so it overrides the configuration defined above.
687 import_config "#{Mix.env()}.exs"