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