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