Merge branch '1808-pleroma-sucks' 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 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.Gun
175 # Configures http settings, upstream proxy etc.
176 config :pleroma, :http,
177 proxy_url: nil,
178 send_user_agent: true,
179 user_agent: :default,
180 adapter: []
181
182 config :pleroma, :instance,
183 name: "Pleroma",
184 email: "example@example.com",
185 notify_email: "noreply@example.com",
186 description: "A Pleroma instance, an alternative fediverse server",
187 background_image: "/images/city.jpg",
188 limit: 5_000,
189 chat_limit: 5_000,
190 remote_limit: 100_000,
191 upload_limit: 16_000_000,
192 avatar_upload_limit: 2_000_000,
193 background_upload_limit: 4_000_000,
194 banner_upload_limit: 4_000_000,
195 poll_limits: %{
196 max_options: 20,
197 max_option_chars: 200,
198 min_expiration: 0,
199 max_expiration: 365 * 24 * 60 * 60
200 },
201 registrations_open: true,
202 invites_enabled: false,
203 account_activation_required: false,
204 federating: true,
205 federation_incoming_replies_max_depth: 100,
206 federation_reachability_timeout_days: 7,
207 federation_publisher_modules: [
208 Pleroma.Web.ActivityPub.Publisher
209 ],
210 allow_relay: true,
211 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
212 public: true,
213 quarantined_instances: [],
214 managed_config: true,
215 static_dir: "instance/static/",
216 allowed_post_formats: [
217 "text/plain",
218 "text/html",
219 "text/markdown",
220 "text/bbcode"
221 ],
222 mrf_transparency: true,
223 mrf_transparency_exclusions: [],
224 autofollowed_nicknames: [],
225 max_pinned_statuses: 1,
226 attachment_links: false,
227 welcome_user_nickname: nil,
228 welcome_message: nil,
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 external_user_synchronization: true,
242 extended_nickname_format: true,
243 cleanup_attachments: false,
244 multi_factor_authentication: [
245 totp: [
246 # digits 6 or 8
247 digits: 6,
248 period: 30
249 ],
250 backup_codes: [
251 number: 5,
252 length: 16
253 ]
254 ]
255
256 config :pleroma, :feed,
257 post_title: %{
258 max_length: 100,
259 omission: "..."
260 }
261
262 config :pleroma, :markup,
263 # XXX - unfortunately, inline images must be enabled by default right now, because
264 # of custom emoji. Issue #275 discusses defanging that somehow.
265 allow_inline_images: true,
266 allow_headings: false,
267 allow_tables: false,
268 allow_fonts: false,
269 scrub_policy: [
270 Pleroma.HTML.Scrubber.Default,
271 Pleroma.HTML.Transform.MediaProxy
272 ]
273
274 config :pleroma, :frontend_configurations,
275 pleroma_fe: %{
276 alwaysShowSubjectInput: true,
277 background: "/images/city.jpg",
278 collapseMessageWithSubject: false,
279 disableChat: false,
280 greentext: false,
281 hideFilteredStatuses: false,
282 hideMutedPosts: false,
283 hidePostStats: false,
284 hideSitename: false,
285 hideUserStats: false,
286 loginMethod: "password",
287 logo: "/static/logo.png",
288 logoMargin: ".1em",
289 logoMask: true,
290 minimalScopesMode: false,
291 noAttachmentLinks: false,
292 nsfwCensorImage: "",
293 postContentType: "text/plain",
294 redirectRootLogin: "/main/friends",
295 redirectRootNoLogin: "/main/all",
296 scopeCopy: true,
297 sidebarRight: false,
298 showFeaturesPanel: true,
299 showInstanceSpecificPanel: false,
300 subjectLineBehavior: "email",
301 theme: "pleroma-dark",
302 webPushNotifications: false
303 },
304 masto_fe: %{
305 showInstanceSpecificPanel: true
306 }
307
308 config :pleroma, :assets,
309 mascots: [
310 pleroma_fox_tan: %{
311 url: "/images/pleroma-fox-tan-smol.png",
312 mime_type: "image/png"
313 },
314 pleroma_fox_tan_shy: %{
315 url: "/images/pleroma-fox-tan-shy.png",
316 mime_type: "image/png"
317 }
318 ],
319 default_mascot: :pleroma_fox_tan
320
321 config :pleroma, :manifest,
322 icons: [
323 %{
324 src: "/static/logo.png",
325 type: "image/png"
326 }
327 ],
328 theme_color: "#282c37",
329 background_color: "#191b22"
330
331 config :pleroma, :activitypub,
332 unfollow_blocked: true,
333 outgoing_blocks: true,
334 follow_handshake_timeout: 500,
335 note_replies_output_limit: 5,
336 sign_object_fetches: true,
337 authorized_fetch_mode: false
338
339 config :pleroma, :streamer,
340 workers: 3,
341 overflow_workers: 2
342
343 config :pleroma, :user, deny_follow_blocked: true
344
345 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
346
347 config :pleroma, :mrf_rejectnonpublic,
348 allow_followersonly: false,
349 allow_direct: false
350
351 config :pleroma, :mrf_hellthread,
352 delist_threshold: 10,
353 reject_threshold: 20
354
355 config :pleroma, :mrf_simple,
356 media_removal: [],
357 media_nsfw: [],
358 federated_timeline_removal: [],
359 report_removal: [],
360 reject: [],
361 accept: [],
362 avatar_removal: [],
363 banner_removal: [],
364 reject_deletes: []
365
366 config :pleroma, :mrf_keyword,
367 reject: [],
368 federated_timeline_removal: [],
369 replace: []
370
371 config :pleroma, :mrf_subchain, match_actor: %{}
372
373 config :pleroma, :mrf_vocabulary,
374 accept: [],
375 reject: []
376
377 config :pleroma, :mrf_object_age,
378 threshold: 172_800,
379 actions: [:delist, :strip_followers]
380
381 config :pleroma, :rich_media,
382 enabled: true,
383 ignore_hosts: [],
384 ignore_tld: ["local", "localdomain", "lan"],
385 parsers: [
386 Pleroma.Web.RichMedia.Parsers.TwitterCard,
387 Pleroma.Web.RichMedia.Parsers.OGP,
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, :chat, enabled: true
409
410 config :phoenix, :format_encoders, json: Jason
411
412 config :phoenix, :json_library, Jason
413
414 config :phoenix, :filter_parameters, ["password", "confirm"]
415
416 config :pleroma, :gopher,
417 enabled: false,
418 ip: {0, 0, 0, 0},
419 port: 9999
420
421 config :pleroma, Pleroma.Web.Metadata,
422 providers: [
423 Pleroma.Web.Metadata.Providers.OpenGraph,
424 Pleroma.Web.Metadata.Providers.TwitterCard,
425 Pleroma.Web.Metadata.Providers.RelMe,
426 Pleroma.Web.Metadata.Providers.Feed
427 ],
428 unfurl_nsfw: false
429
430 config :pleroma, :http_security,
431 enabled: true,
432 sts: false,
433 sts_max_age: 31_536_000,
434 ct_max_age: 2_592_000,
435 referrer_policy: "same-origin"
436
437 config :cors_plug,
438 max_age: 86_400,
439 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
440 expose: [
441 "Link",
442 "X-RateLimit-Reset",
443 "X-RateLimit-Limit",
444 "X-RateLimit-Remaining",
445 "X-Request-Id",
446 "Idempotency-Key"
447 ],
448 credentials: true,
449 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
450
451 config :pleroma, Pleroma.User,
452 restricted_nicknames: [
453 ".well-known",
454 "~",
455 "about",
456 "activities",
457 "api",
458 "auth",
459 "check_password",
460 "dev",
461 "friend-requests",
462 "inbox",
463 "internal",
464 "main",
465 "media",
466 "nodeinfo",
467 "notice",
468 "oauth",
469 "objects",
470 "ostatus_subscribe",
471 "pleroma",
472 "proxy",
473 "push",
474 "registration",
475 "relay",
476 "settings",
477 "status",
478 "tag",
479 "user-search",
480 "user_exists",
481 "users",
482 "web"
483 ]
484
485 config :pleroma, Oban,
486 repo: Pleroma.Repo,
487 verbose: false,
488 prune: {:maxlen, 1500},
489 queues: [
490 activity_expiration: 10,
491 federator_incoming: 50,
492 federator_outgoing: 50,
493 web_push: 50,
494 mailer: 10,
495 transmogrifier: 20,
496 scheduled_activities: 10,
497 background: 5,
498 remote_fetcher: 2,
499 attachments_cleanup: 5,
500 new_users_digest: 1
501 ],
502 crontab: [
503 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
504 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
505 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
506 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
507 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
508 ]
509
510 config :pleroma, :workers,
511 retries: [
512 federator_incoming: 5,
513 federator_outgoing: 5
514 ]
515
516 config :auto_linker,
517 opts: [
518 extra: true,
519 # TODO: Set to :no_scheme when it works properly
520 validate_tld: true,
521 class: false,
522 strip_prefix: false,
523 new_window: false,
524 rel: "ugc"
525 ]
526
527 config :pleroma, :ldap,
528 enabled: System.get_env("LDAP_ENABLED") == "true",
529 host: System.get_env("LDAP_HOST") || "localhost",
530 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
531 ssl: System.get_env("LDAP_SSL") == "true",
532 sslopts: [],
533 tls: System.get_env("LDAP_TLS") == "true",
534 tlsopts: [],
535 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
536 uid: System.get_env("LDAP_UID") || "cn"
537
538 config :esshd,
539 enabled: false
540
541 oauth_consumer_strategies =
542 System.get_env("OAUTH_CONSUMER_STRATEGIES")
543 |> to_string()
544 |> String.split()
545 |> Enum.map(&hd(String.split(&1, ":")))
546
547 ueberauth_providers =
548 for strategy <- oauth_consumer_strategies do
549 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
550 strategy_module = String.to_atom(strategy_module_name)
551 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
552 end
553
554 config :ueberauth,
555 Ueberauth,
556 base_path: "/oauth",
557 providers: ueberauth_providers
558
559 config :pleroma,
560 :auth,
561 enforce_oauth_admin_scope_usage: true,
562 oauth_consumer_strategies: oauth_consumer_strategies
563
564 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
565
566 config :pleroma, Pleroma.Emails.UserEmail,
567 logo: nil,
568 styling: %{
569 link_color: "#d8a070",
570 background_color: "#2C3645",
571 content_background_color: "#1B2635",
572 header_color: "#d8a070",
573 text_color: "#b9b9ba",
574 text_muted_color: "#b9b9ba"
575 }
576
577 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
578
579 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
580
581 config :pleroma, Pleroma.ScheduledActivity,
582 daily_user_limit: 25,
583 total_user_limit: 300,
584 enabled: true
585
586 config :pleroma, :email_notifications,
587 digest: %{
588 active: false,
589 interval: 7,
590 inactivity_threshold: 7
591 }
592
593 config :pleroma, :oauth2,
594 token_expires_in: 600,
595 issue_new_refresh_token: true,
596 clean_expired_tokens: false
597
598 config :pleroma, :database, rum_enabled: false
599
600 config :pleroma, :env, Mix.env()
601
602 config :http_signatures,
603 adapter: Pleroma.Signature
604
605 config :pleroma, :rate_limit,
606 authentication: {60_000, 15},
607 timeline: {500, 3},
608 search: [{1000, 10}, {1000, 30}],
609 app_account_creation: {1_800_000, 25},
610 relations_actions: {10_000, 10},
611 relation_id_action: {60_000, 2},
612 statuses_actions: {10_000, 15},
613 status_id_action: {60_000, 3},
614 password_reset: {1_800_000, 5},
615 account_confirmation_resend: {8_640_000, 5},
616 ap_routes: {60_000, 15}
617
618 config :pleroma, Pleroma.ActivityExpiration, enabled: true
619
620 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
621
622 config :pleroma, :static_fe, enabled: false
623
624 config :pleroma, :web_cache_ttl,
625 activity_pub: nil,
626 activity_pub_question: 30_000
627
628 config :pleroma, :modules, runtime_dir: "instance/modules"
629
630 config :pleroma, configurable_from_database: false
631
632 config :pleroma, Pleroma.Repo,
633 parameters: [gin_fuzzy_search_limit: "500"],
634 prepare: :unnamed
635
636 config :pleroma, :connections_pool,
637 checkin_timeout: 250,
638 max_connections: 250,
639 retry: 1,
640 retry_timeout: 1000,
641 await_up_timeout: 5_000
642
643 config :pleroma, :pools,
644 federation: [
645 size: 50,
646 max_overflow: 10,
647 timeout: 150_000
648 ],
649 media: [
650 size: 50,
651 max_overflow: 10,
652 timeout: 150_000
653 ],
654 upload: [
655 size: 25,
656 max_overflow: 5,
657 timeout: 300_000
658 ],
659 default: [
660 size: 10,
661 max_overflow: 2,
662 timeout: 10_000
663 ]
664
665 config :pleroma, :hackney_pools,
666 federation: [
667 max_connections: 50,
668 timeout: 150_000
669 ],
670 media: [
671 max_connections: 50,
672 timeout: 150_000
673 ],
674 upload: [
675 max_connections: 25,
676 timeout: 300_000
677 ]
678
679 config :pleroma, :restrict_unauthenticated,
680 timelines: %{local: false, federated: false},
681 profiles: %{local: false, remote: false},
682 activities: %{local: false, remote: false}
683
684 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
685
686 # Import environment specific config. This must remain at the bottom
687 # of this file so it overrides the configuration defined above.
688 import_config "#{Mix.env()}.exs"