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