5aad26e95806411c600b02ae58ed4371c4e6521e
[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 http: [
402 follow_redirect: true,
403 pool: :media
404 ]
405 ],
406 whitelist: []
407
408 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
409 method: :purge,
410 headers: [],
411 options: []
412
413 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
414
415 config :pleroma, :chat, enabled: true
416
417 config :phoenix, :format_encoders, json: Jason
418
419 config :phoenix, :json_library, Jason
420
421 config :phoenix, :filter_parameters, ["password", "confirm"]
422
423 config :pleroma, :gopher,
424 enabled: false,
425 ip: {0, 0, 0, 0},
426 port: 9999
427
428 config :pleroma, Pleroma.Web.Metadata,
429 providers: [
430 Pleroma.Web.Metadata.Providers.OpenGraph,
431 Pleroma.Web.Metadata.Providers.TwitterCard,
432 Pleroma.Web.Metadata.Providers.RelMe,
433 Pleroma.Web.Metadata.Providers.Feed
434 ],
435 unfurl_nsfw: false
436
437 config :pleroma, :http_security,
438 enabled: true,
439 sts: false,
440 sts_max_age: 31_536_000,
441 ct_max_age: 2_592_000,
442 referrer_policy: "same-origin"
443
444 config :cors_plug,
445 max_age: 86_400,
446 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
447 expose: [
448 "Link",
449 "X-RateLimit-Reset",
450 "X-RateLimit-Limit",
451 "X-RateLimit-Remaining",
452 "X-Request-Id",
453 "Idempotency-Key"
454 ],
455 credentials: true,
456 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
457
458 config :pleroma, Pleroma.User,
459 restricted_nicknames: [
460 ".well-known",
461 "~",
462 "about",
463 "activities",
464 "api",
465 "auth",
466 "check_password",
467 "dev",
468 "friend-requests",
469 "inbox",
470 "internal",
471 "main",
472 "media",
473 "nodeinfo",
474 "notice",
475 "oauth",
476 "objects",
477 "ostatus_subscribe",
478 "pleroma",
479 "proxy",
480 "push",
481 "registration",
482 "relay",
483 "settings",
484 "status",
485 "tag",
486 "user-search",
487 "user_exists",
488 "users",
489 "web"
490 ]
491
492 config :pleroma, Oban,
493 repo: Pleroma.Repo,
494 verbose: false,
495 prune: {:maxlen, 1500},
496 queues: [
497 activity_expiration: 10,
498 federator_incoming: 50,
499 federator_outgoing: 50,
500 web_push: 50,
501 mailer: 10,
502 transmogrifier: 20,
503 scheduled_activities: 10,
504 background: 5,
505 remote_fetcher: 2,
506 attachments_cleanup: 5,
507 new_users_digest: 1
508 ],
509 crontab: [
510 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
511 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
512 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
513 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
514 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
515 ]
516
517 config :pleroma, :workers,
518 retries: [
519 federator_incoming: 5,
520 federator_outgoing: 5
521 ]
522
523 config :auto_linker,
524 opts: [
525 extra: true,
526 # TODO: Set to :no_scheme when it works properly
527 validate_tld: true,
528 class: false,
529 strip_prefix: false,
530 new_window: false,
531 rel: "ugc"
532 ]
533
534 config :pleroma, :ldap,
535 enabled: System.get_env("LDAP_ENABLED") == "true",
536 host: System.get_env("LDAP_HOST") || "localhost",
537 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
538 ssl: System.get_env("LDAP_SSL") == "true",
539 sslopts: [],
540 tls: System.get_env("LDAP_TLS") == "true",
541 tlsopts: [],
542 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
543 uid: System.get_env("LDAP_UID") || "cn"
544
545 config :esshd,
546 enabled: false
547
548 oauth_consumer_strategies =
549 System.get_env("OAUTH_CONSUMER_STRATEGIES")
550 |> to_string()
551 |> String.split()
552 |> Enum.map(&hd(String.split(&1, ":")))
553
554 ueberauth_providers =
555 for strategy <- oauth_consumer_strategies do
556 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
557 strategy_module = String.to_atom(strategy_module_name)
558 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
559 end
560
561 config :ueberauth,
562 Ueberauth,
563 base_path: "/oauth",
564 providers: ueberauth_providers
565
566 config :pleroma,
567 :auth,
568 enforce_oauth_admin_scope_usage: true,
569 oauth_consumer_strategies: oauth_consumer_strategies
570
571 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
572
573 config :pleroma, Pleroma.Emails.UserEmail,
574 logo: nil,
575 styling: %{
576 link_color: "#d8a070",
577 background_color: "#2C3645",
578 content_background_color: "#1B2635",
579 header_color: "#d8a070",
580 text_color: "#b9b9ba",
581 text_muted_color: "#b9b9ba"
582 }
583
584 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
585
586 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
587
588 config :pleroma, Pleroma.ScheduledActivity,
589 daily_user_limit: 25,
590 total_user_limit: 300,
591 enabled: true
592
593 config :pleroma, :email_notifications,
594 digest: %{
595 active: false,
596 interval: 7,
597 inactivity_threshold: 7
598 }
599
600 config :pleroma, :oauth2,
601 token_expires_in: 600,
602 issue_new_refresh_token: true,
603 clean_expired_tokens: false
604
605 config :pleroma, :database, rum_enabled: false
606
607 config :pleroma, :env, Mix.env()
608
609 config :http_signatures,
610 adapter: Pleroma.Signature
611
612 config :pleroma, :rate_limit,
613 authentication: {60_000, 15},
614 timeline: {500, 3},
615 search: [{1000, 10}, {1000, 30}],
616 app_account_creation: {1_800_000, 25},
617 relations_actions: {10_000, 10},
618 relation_id_action: {60_000, 2},
619 statuses_actions: {10_000, 15},
620 status_id_action: {60_000, 3},
621 password_reset: {1_800_000, 5},
622 account_confirmation_resend: {8_640_000, 5},
623 ap_routes: {60_000, 15}
624
625 config :pleroma, Pleroma.ActivityExpiration, enabled: true
626
627 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
628
629 config :pleroma, :static_fe, enabled: false
630
631 config :pleroma, :web_cache_ttl,
632 activity_pub: nil,
633 activity_pub_question: 30_000
634
635 config :pleroma, :modules, runtime_dir: "instance/modules"
636
637 config :pleroma, configurable_from_database: false
638
639 config :pleroma, Pleroma.Repo,
640 parameters: [gin_fuzzy_search_limit: "500"],
641 prepare: :unnamed
642
643 config :pleroma, :connections_pool,
644 checkin_timeout: 250,
645 max_connections: 250,
646 retry: 1,
647 retry_timeout: 1000,
648 await_up_timeout: 5_000
649
650 config :pleroma, :pools,
651 federation: [
652 size: 50,
653 max_overflow: 10,
654 timeout: 150_000
655 ],
656 media: [
657 size: 50,
658 max_overflow: 10,
659 timeout: 150_000
660 ],
661 upload: [
662 size: 25,
663 max_overflow: 5,
664 timeout: 300_000
665 ],
666 default: [
667 size: 10,
668 max_overflow: 2,
669 timeout: 10_000
670 ]
671
672 config :pleroma, :hackney_pools,
673 federation: [
674 max_connections: 50,
675 timeout: 150_000
676 ],
677 media: [
678 max_connections: 50,
679 timeout: 150_000
680 ],
681 upload: [
682 max_connections: 25,
683 timeout: 300_000
684 ]
685
686 config :pleroma, :restrict_unauthenticated,
687 timelines: %{local: false, federated: false},
688 profiles: %{local: false, remote: false},
689 activities: %{local: false, remote: false}
690
691 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
692
693 config :pleroma, :mrf,
694 policies: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
695 transparency: true,
696 transparency_exclusions: []
697
698 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
699
700 config :ex_aws, http_client: Pleroma.HTTP.ExAws
701
702 # Import environment specific config. This must remain at the bottom
703 # of this file so it overrides the configuration defined above.
704 import_config "#{Mix.env()}.exs"