by default don't use gun retries
[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 parameters: [gin_fuzzy_search_limit: "500"]
54
55 config :pleroma, Pleroma.Captcha,
56 enabled: true,
57 seconds_valid: 300,
58 method: Pleroma.Captcha.Native
59
60 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
61
62 # Upload configuration
63 config :pleroma, Pleroma.Upload,
64 uploader: Pleroma.Uploaders.Local,
65 filters: [Pleroma.Upload.Filter.Dedupe],
66 link_name: false,
67 proxy_remote: false,
68 proxy_opts: [
69 redirect_on_failure: false,
70 max_body_length: 25 * 1_048_576,
71 http: [
72 follow_redirect: true,
73 pool: :upload
74 ]
75 ]
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 # 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 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 federating: true,
202 federation_incoming_replies_max_depth: 100,
203 federation_reachability_timeout_days: 7,
204 federation_publisher_modules: [
205 Pleroma.Web.ActivityPub.Publisher
206 ],
207 allow_relay: true,
208 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
209 public: true,
210 quarantined_instances: [],
211 managed_config: true,
212 static_dir: "instance/static/",
213 allowed_post_formats: [
214 "text/plain",
215 "text/html",
216 "text/markdown",
217 "text/bbcode"
218 ],
219 mrf_transparency: true,
220 mrf_transparency_exclusions: [],
221 autofollowed_nicknames: [],
222 max_pinned_statuses: 1,
223 attachment_links: false,
224 welcome_user_nickname: nil,
225 welcome_message: nil,
226 max_report_comment_size: 1000,
227 safe_dm_mentions: false,
228 healthcheck: false,
229 remote_post_retention_days: 90,
230 skip_thread_containment: true,
231 limit_to_local_content: :unauthenticated,
232 user_bio_length: 5000,
233 user_name_length: 100,
234 max_account_fields: 10,
235 max_remote_account_fields: 20,
236 account_field_name_length: 512,
237 account_field_value_length: 2048,
238 external_user_synchronization: true,
239 extended_nickname_format: true,
240 cleanup_attachments: false
241
242 config :pleroma, :feed,
243 post_title: %{
244 max_length: 100,
245 omission: "..."
246 }
247
248 config :pleroma, :markup,
249 # XXX - unfortunately, inline images must be enabled by default right now, because
250 # of custom emoji. Issue #275 discusses defanging that somehow.
251 allow_inline_images: true,
252 allow_headings: false,
253 allow_tables: false,
254 allow_fonts: false,
255 scrub_policy: [
256 Pleroma.HTML.Scrubber.Default,
257 Pleroma.HTML.Transform.MediaProxy
258 ]
259
260 config :pleroma, :frontend_configurations,
261 pleroma_fe: %{
262 theme: "pleroma-dark",
263 logo: "/static/logo.png",
264 background: "/images/city.jpg",
265 redirectRootNoLogin: "/main/all",
266 redirectRootLogin: "/main/friends",
267 showInstanceSpecificPanel: true,
268 scopeOptionsEnabled: false,
269 formattingOptionsEnabled: false,
270 collapseMessageWithSubject: false,
271 hidePostStats: false,
272 hideUserStats: false,
273 scopeCopy: true,
274 subjectLineBehavior: "email",
275 alwaysShowSubjectInput: true
276 },
277 masto_fe: %{
278 showInstanceSpecificPanel: true
279 }
280
281 config :pleroma, :assets,
282 mascots: [
283 pleroma_fox_tan: %{
284 url: "/images/pleroma-fox-tan-smol.png",
285 mime_type: "image/png"
286 },
287 pleroma_fox_tan_shy: %{
288 url: "/images/pleroma-fox-tan-shy.png",
289 mime_type: "image/png"
290 }
291 ],
292 default_mascot: :pleroma_fox_tan
293
294 config :pleroma, :manifest,
295 icons: [
296 %{
297 src: "/static/logo.png",
298 type: "image/png"
299 }
300 ],
301 theme_color: "#282c37",
302 background_color: "#191b22"
303
304 config :pleroma, :activitypub,
305 unfollow_blocked: true,
306 outgoing_blocks: true,
307 follow_handshake_timeout: 500,
308 sign_object_fetches: true,
309 authorized_fetch_mode: false
310
311 config :pleroma, :streamer,
312 workers: 3,
313 overflow_workers: 2
314
315 config :pleroma, :user, deny_follow_blocked: true
316
317 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
318
319 config :pleroma, :mrf_rejectnonpublic,
320 allow_followersonly: false,
321 allow_direct: false
322
323 config :pleroma, :mrf_hellthread,
324 delist_threshold: 10,
325 reject_threshold: 20
326
327 config :pleroma, :mrf_simple,
328 media_removal: [],
329 media_nsfw: [],
330 federated_timeline_removal: [],
331 report_removal: [],
332 reject: [],
333 accept: [],
334 avatar_removal: [],
335 banner_removal: []
336
337 config :pleroma, :mrf_keyword,
338 reject: [],
339 federated_timeline_removal: [],
340 replace: []
341
342 config :pleroma, :mrf_subchain, match_actor: %{}
343
344 config :pleroma, :mrf_vocabulary,
345 accept: [],
346 reject: []
347
348 config :pleroma, :mrf_object_age,
349 threshold: 172_800,
350 actions: [:delist, :strip_followers]
351
352 config :pleroma, :rich_media,
353 enabled: true,
354 ignore_hosts: [],
355 ignore_tld: ["local", "localdomain", "lan"],
356 parsers: [
357 Pleroma.Web.RichMedia.Parsers.TwitterCard,
358 Pleroma.Web.RichMedia.Parsers.OGP,
359 Pleroma.Web.RichMedia.Parsers.OEmbed
360 ],
361 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
362
363 config :pleroma, :media_proxy,
364 enabled: false,
365 proxy_opts: [
366 redirect_on_failure: false,
367 max_body_length: 25 * 1_048_576,
368 http: [
369 follow_redirect: true,
370 pool: :media
371 ]
372 ],
373 whitelist: []
374
375 config :pleroma, :chat, enabled: true
376
377 config :phoenix, :format_encoders, json: Jason
378
379 config :phoenix, :json_library, Jason
380
381 config :pleroma, :gopher,
382 enabled: false,
383 ip: {0, 0, 0, 0},
384 port: 9999
385
386 config :pleroma, Pleroma.Web.Metadata,
387 providers: [
388 Pleroma.Web.Metadata.Providers.OpenGraph,
389 Pleroma.Web.Metadata.Providers.TwitterCard,
390 Pleroma.Web.Metadata.Providers.RelMe,
391 Pleroma.Web.Metadata.Providers.Feed
392 ],
393 unfurl_nsfw: false
394
395 config :pleroma, :http_security,
396 enabled: true,
397 sts: false,
398 sts_max_age: 31_536_000,
399 ct_max_age: 2_592_000,
400 referrer_policy: "same-origin"
401
402 config :cors_plug,
403 max_age: 86_400,
404 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
405 expose: [
406 "Link",
407 "X-RateLimit-Reset",
408 "X-RateLimit-Limit",
409 "X-RateLimit-Remaining",
410 "X-Request-Id",
411 "Idempotency-Key"
412 ],
413 credentials: true,
414 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
415
416 config :pleroma, Pleroma.User,
417 restricted_nicknames: [
418 ".well-known",
419 "~",
420 "about",
421 "activities",
422 "api",
423 "auth",
424 "check_password",
425 "dev",
426 "friend-requests",
427 "inbox",
428 "internal",
429 "main",
430 "media",
431 "nodeinfo",
432 "notice",
433 "oauth",
434 "objects",
435 "ostatus_subscribe",
436 "pleroma",
437 "proxy",
438 "push",
439 "registration",
440 "relay",
441 "settings",
442 "status",
443 "tag",
444 "user-search",
445 "user_exists",
446 "users",
447 "web"
448 ]
449
450 config :pleroma, Oban,
451 repo: Pleroma.Repo,
452 verbose: false,
453 prune: {:maxlen, 1500},
454 queues: [
455 activity_expiration: 10,
456 federator_incoming: 50,
457 federator_outgoing: 50,
458 web_push: 50,
459 mailer: 10,
460 transmogrifier: 20,
461 scheduled_activities: 10,
462 background: 5,
463 attachments_cleanup: 5,
464 new_users_digest: 1
465 ],
466 crontab: [
467 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
468 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
469 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
470 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
471 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
472 ]
473
474 config :pleroma, :workers,
475 retries: [
476 federator_incoming: 5,
477 federator_outgoing: 5
478 ]
479
480 config :pleroma, :fetch_initial_posts,
481 enabled: false,
482 pages: 5
483
484 config :auto_linker,
485 opts: [
486 extra: true,
487 # TODO: Set to :no_scheme when it works properly
488 validate_tld: true,
489 class: false,
490 strip_prefix: false,
491 new_window: false,
492 rel: "ugc"
493 ]
494
495 config :pleroma, :ldap,
496 enabled: System.get_env("LDAP_ENABLED") == "true",
497 host: System.get_env("LDAP_HOST") || "localhost",
498 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
499 ssl: System.get_env("LDAP_SSL") == "true",
500 sslopts: [],
501 tls: System.get_env("LDAP_TLS") == "true",
502 tlsopts: [],
503 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
504 uid: System.get_env("LDAP_UID") || "cn"
505
506 config :esshd,
507 enabled: false
508
509 oauth_consumer_strategies =
510 System.get_env("OAUTH_CONSUMER_STRATEGIES")
511 |> to_string()
512 |> String.split()
513 |> Enum.map(&hd(String.split(&1, ":")))
514
515 ueberauth_providers =
516 for strategy <- oauth_consumer_strategies do
517 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
518 strategy_module = String.to_atom(strategy_module_name)
519 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
520 end
521
522 config :ueberauth,
523 Ueberauth,
524 base_path: "/oauth",
525 providers: ueberauth_providers
526
527 config :pleroma,
528 :auth,
529 enforce_oauth_admin_scope_usage: true,
530 oauth_consumer_strategies: oauth_consumer_strategies
531
532 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
533
534 config :pleroma, Pleroma.Emails.UserEmail,
535 logo: nil,
536 styling: %{
537 link_color: "#d8a070",
538 background_color: "#2C3645",
539 content_background_color: "#1B2635",
540 header_color: "#d8a070",
541 text_color: "#b9b9ba",
542 text_muted_color: "#b9b9ba"
543 }
544
545 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
546
547 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
548
549 config :pleroma, Pleroma.ScheduledActivity,
550 daily_user_limit: 25,
551 total_user_limit: 300,
552 enabled: true
553
554 config :pleroma, :email_notifications,
555 digest: %{
556 active: false,
557 interval: 7,
558 inactivity_threshold: 7
559 }
560
561 config :pleroma, :oauth2,
562 token_expires_in: 600,
563 issue_new_refresh_token: true,
564 clean_expired_tokens: false
565
566 config :pleroma, :database, rum_enabled: false
567
568 config :pleroma, :env, Mix.env()
569
570 config :http_signatures,
571 adapter: Pleroma.Signature
572
573 config :pleroma, :rate_limit,
574 authentication: {60_000, 15},
575 search: [{1000, 10}, {1000, 30}],
576 app_account_creation: {1_800_000, 25},
577 relations_actions: {10_000, 10},
578 relation_id_action: {60_000, 2},
579 statuses_actions: {10_000, 15},
580 status_id_action: {60_000, 3},
581 password_reset: {1_800_000, 5},
582 account_confirmation_resend: {8_640_000, 5},
583 ap_routes: {60_000, 15}
584
585 config :pleroma, Pleroma.ActivityExpiration, enabled: true
586
587 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
588
589 config :pleroma, :static_fe, enabled: false
590
591 config :pleroma, :web_cache_ttl,
592 activity_pub: nil,
593 activity_pub_question: 30_000
594
595 config :pleroma, :modules, runtime_dir: "instance/modules"
596
597 config :pleroma, configurable_from_database: false
598
599 config :pleroma, :connections_pool,
600 receive_connection_timeout: 250,
601 max_connections: 250,
602 retry: 0,
603 retry_timeout: 100,
604 await_up_timeout: 5_000
605
606 config :pleroma, :pools,
607 federation: [
608 size: 50,
609 max_overflow: 10,
610 timeout: 150_000
611 ],
612 media: [
613 size: 50,
614 max_overflow: 10,
615 timeout: 150_000
616 ],
617 upload: [
618 size: 25,
619 max_overflow: 5,
620 timeout: 300_000
621 ],
622 default: [
623 size: 10,
624 max_overflow: 2,
625 timeout: 10_000
626 ]
627
628 config :pleroma, :hackney_pools,
629 federation: [
630 max_connections: 50,
631 timeout: 150_000
632 ],
633 media: [
634 max_connections: 50,
635 timeout: 150_000
636 ],
637 upload: [
638 max_connections: 25,
639 timeout: 300_000
640 ]
641
642 # Import environment specific config. This must remain at the bottom
643 # of this file so it overrides the configuration defined above.
644 import_config "#{Mix.env()}.exs"