saving to DB only added by user settings
[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 scheduled_jobs =
55 with digest_config <- Application.get_env(:pleroma, :email_notifications)[:digest],
56 true <- digest_config[:active] do
57 [{digest_config[:schedule], {Pleroma.Daemons.DigestEmailDaemon, :perform, []}}]
58 else
59 _ -> []
60 end
61
62 config :pleroma, Pleroma.Scheduler,
63 global: true,
64 overlap: true,
65 timezone: :utc,
66 jobs: scheduled_jobs
67
68 config :pleroma, Pleroma.Captcha,
69 enabled: true,
70 seconds_valid: 300,
71 method: Pleroma.Captcha.Native
72
73 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
74
75 config :pleroma, :hackney_pools,
76 federation: [
77 max_connections: 50,
78 timeout: 150_000
79 ],
80 media: [
81 max_connections: 50,
82 timeout: 150_000
83 ],
84 upload: [
85 max_connections: 25,
86 timeout: 300_000
87 ]
88
89 # Upload configuration
90 config :pleroma, Pleroma.Upload,
91 uploader: Pleroma.Uploaders.Local,
92 filters: [Pleroma.Upload.Filter.Dedupe],
93 link_name: false,
94 proxy_remote: false,
95 proxy_opts: [
96 redirect_on_failure: false,
97 max_body_length: 25 * 1_048_576,
98 http: [
99 follow_redirect: true,
100 pool: :upload
101 ]
102 ]
103
104 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
105
106 config :pleroma, Pleroma.Uploaders.S3,
107 bucket: nil,
108 streaming_enabled: true,
109 public_endpoint: "https://s3.amazonaws.com"
110
111 config :pleroma, :emoji,
112 shortcode_globs: ["/emoji/custom/**/*.png"],
113 pack_extensions: [".png", ".gif"],
114 groups: [
115 # Put groups that have higher priority than defaults here. Example in `docs/config/custom_emoji.md`
116 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
117 ],
118 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
119 shared_pack_cache_seconds_per_file: 60
120
121 config :pleroma, :uri_schemes,
122 valid_schemes: [
123 "https",
124 "http",
125 "dat",
126 "dweb",
127 "gopher",
128 "ipfs",
129 "ipns",
130 "irc",
131 "ircs",
132 "magnet",
133 "mailto",
134 "mumble",
135 "ssb",
136 "xmpp"
137 ]
138
139 websocket_config = [
140 path: "/websocket",
141 serializer: [
142 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
143 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
144 ],
145 timeout: 60_000,
146 transport_log: false,
147 compress: false
148 ]
149
150 # Configures the endpoint
151 config :pleroma, Pleroma.Web.Endpoint,
152 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
153 url: [host: "localhost"],
154 http: [
155 ip: {127, 0, 0, 1},
156 dispatch: [
157 {:_,
158 [
159 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
160 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
161 {Phoenix.Transports.WebSocket,
162 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
163 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
164 ]}
165 ]
166 ],
167 protocol: "https",
168 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
169 signing_salt: "CqaoopA2",
170 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
171 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
172 secure_cookie_flag: true,
173 extra_cookie_attrs: [
174 "SameSite=Lax"
175 ]
176
177 # Configures Elixir's Logger
178 config :logger, :console,
179 level: :debug,
180 format: "\n$time $metadata[$level] $message\n",
181 metadata: [:request_id]
182
183 config :logger, :ex_syslogger,
184 level: :debug,
185 ident: "pleroma",
186 format: "$metadata[$level] $message",
187 metadata: [:request_id]
188
189 config :quack,
190 level: :warn,
191 meta: [:all],
192 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
193
194 config :mime, :types, %{
195 "application/xml" => ["xml"],
196 "application/xrd+xml" => ["xrd+xml"],
197 "application/jrd+json" => ["jrd+json"],
198 "application/activity+json" => ["activity+json"],
199 "application/ld+json" => ["activity+json"]
200 }
201
202 config :tesla, adapter: Tesla.Adapter.Hackney
203
204 # Configures http settings, upstream proxy etc.
205 config :pleroma, :http,
206 proxy_url: nil,
207 send_user_agent: true,
208 user_agent: :default,
209 adapter: [
210 ssl_options: [
211 # Workaround for remote server certificate chain issues
212 partial_chain: &:hackney_connect.partial_chain/1,
213 # We don't support TLS v1.3 yet
214 versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
215 ]
216 ]
217
218 config :pleroma, :instance,
219 name: "Pleroma",
220 email: "example@example.com",
221 notify_email: "noreply@example.com",
222 description: "A Pleroma instance, an alternative fediverse server",
223 limit: 5_000,
224 chat_limit: 5_000,
225 remote_limit: 100_000,
226 upload_limit: 16_000_000,
227 avatar_upload_limit: 2_000_000,
228 background_upload_limit: 4_000_000,
229 banner_upload_limit: 4_000_000,
230 poll_limits: %{
231 max_options: 20,
232 max_option_chars: 200,
233 min_expiration: 0,
234 max_expiration: 365 * 24 * 60 * 60
235 },
236 registrations_open: true,
237 federating: true,
238 federation_incoming_replies_max_depth: 100,
239 federation_reachability_timeout_days: 7,
240 federation_publisher_modules: [
241 Pleroma.Web.ActivityPub.Publisher
242 ],
243 allow_relay: true,
244 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
245 public: true,
246 quarantined_instances: [],
247 managed_config: true,
248 static_dir: "instance/static/",
249 allowed_post_formats: [
250 "text/plain",
251 "text/html",
252 "text/markdown",
253 "text/bbcode"
254 ],
255 mrf_transparency: true,
256 mrf_transparency_exclusions: [],
257 autofollowed_nicknames: [],
258 max_pinned_statuses: 1,
259 no_attachment_links: true,
260 welcome_user_nickname: nil,
261 welcome_message: nil,
262 max_report_comment_size: 1000,
263 safe_dm_mentions: false,
264 healthcheck: false,
265 remote_post_retention_days: 90,
266 skip_thread_containment: true,
267 limit_to_local_content: :unauthenticated,
268 user_bio_length: 5000,
269 user_name_length: 100,
270 max_account_fields: 10,
271 max_remote_account_fields: 20,
272 account_field_name_length: 512,
273 account_field_value_length: 2048,
274 external_user_synchronization: true,
275 extended_nickname_format: true
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 theme: "pleroma-dark",
298 logo: "/static/logo.png",
299 background: "/images/city.jpg",
300 redirectRootNoLogin: "/main/all",
301 redirectRootLogin: "/main/friends",
302 showInstanceSpecificPanel: true,
303 scopeOptionsEnabled: false,
304 formattingOptionsEnabled: false,
305 collapseMessageWithSubject: false,
306 hidePostStats: false,
307 hideUserStats: false,
308 scopeCopy: true,
309 subjectLineBehavior: "email",
310 alwaysShowSubjectInput: true
311 },
312 masto_fe: %{
313 showInstanceSpecificPanel: true
314 }
315
316 config :pleroma, :assets,
317 mascots: [
318 pleroma_fox_tan: %{
319 url: "/images/pleroma-fox-tan-smol.png",
320 mime_type: "image/png"
321 },
322 pleroma_fox_tan_shy: %{
323 url: "/images/pleroma-fox-tan-shy.png",
324 mime_type: "image/png"
325 }
326 ],
327 default_mascot: :pleroma_fox_tan
328
329 config :pleroma, :manifest,
330 icons: [
331 %{
332 src: "/static/logo.png",
333 type: "image/png"
334 }
335 ],
336 theme_color: "#282c37",
337 background_color: "#191b22"
338
339 config :pleroma, :activitypub,
340 unfollow_blocked: true,
341 outgoing_blocks: true,
342 follow_handshake_timeout: 500,
343 sign_object_fetches: true
344
345 config :pleroma, :streamer,
346 workers: 3,
347 overflow_workers: 2
348
349 config :pleroma, :user, deny_follow_blocked: true
350
351 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
352
353 config :pleroma, :mrf_rejectnonpublic,
354 allow_followersonly: false,
355 allow_direct: false
356
357 config :pleroma, :mrf_hellthread,
358 delist_threshold: 10,
359 reject_threshold: 20
360
361 config :pleroma, :mrf_simple,
362 media_removal: [],
363 media_nsfw: [],
364 federated_timeline_removal: [],
365 report_removal: [],
366 reject: [],
367 accept: [],
368 avatar_removal: [],
369 banner_removal: []
370
371 config :pleroma, :mrf_keyword,
372 reject: [],
373 federated_timeline_removal: [],
374 replace: []
375
376 config :pleroma, :mrf_subchain, match_actor: %{}
377
378 config :pleroma, :mrf_vocabulary,
379 accept: [],
380 reject: []
381
382 config :pleroma, :mrf_object_age,
383 threshold: 172_800,
384 actions: [:delist, :strip_followers]
385
386 config :pleroma, :rich_media,
387 enabled: true,
388 ignore_hosts: [],
389 ignore_tld: ["local", "localdomain", "lan"],
390 parsers: [
391 Pleroma.Web.RichMedia.Parsers.TwitterCard,
392 Pleroma.Web.RichMedia.Parsers.OGP,
393 Pleroma.Web.RichMedia.Parsers.OEmbed
394 ],
395 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
396
397 config :pleroma, :media_proxy,
398 enabled: false,
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, :chat, enabled: true
410
411 config :phoenix, :format_encoders, json: Jason
412
413 config :phoenix, :json_library, Jason
414
415 config :pleroma, :gopher,
416 enabled: false,
417 ip: {0, 0, 0, 0},
418 port: 9999
419
420 config :pleroma, Pleroma.Web.Metadata,
421 providers: [
422 Pleroma.Web.Metadata.Providers.OpenGraph,
423 Pleroma.Web.Metadata.Providers.TwitterCard,
424 Pleroma.Web.Metadata.Providers.RelMe,
425 Pleroma.Web.Metadata.Providers.Feed
426 ],
427 unfurl_nsfw: false
428
429 config :pleroma, :suggestions,
430 enabled: false,
431 third_party_engine:
432 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
433 timeout: 300_000,
434 limit: 40,
435 web: "https://vinayaka.distsn.org"
436
437 config :pleroma, :http_security,
438 enabled: true,
439 sts: false,
440 sts_max_age: 31_536_000,
441 ct_max_age: 2_592_000,
442 referrer_policy: "same-origin"
443
444 config :cors_plug,
445 max_age: 86_400,
446 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
447 expose: [
448 "Link",
449 "X-RateLimit-Reset",
450 "X-RateLimit-Limit",
451 "X-RateLimit-Remaining",
452 "X-Request-Id",
453 "Idempotency-Key"
454 ],
455 credentials: true,
456 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
457
458 config :pleroma, Pleroma.User,
459 restricted_nicknames: [
460 ".well-known",
461 "~",
462 "about",
463 "activities",
464 "api",
465 "auth",
466 "check_password",
467 "dev",
468 "friend-requests",
469 "inbox",
470 "internal",
471 "main",
472 "media",
473 "nodeinfo",
474 "notice",
475 "oauth",
476 "objects",
477 "ostatus_subscribe",
478 "pleroma",
479 "proxy",
480 "push",
481 "registration",
482 "relay",
483 "settings",
484 "status",
485 "tag",
486 "user-search",
487 "user_exists",
488 "users",
489 "web"
490 ]
491
492 config :pleroma, Oban,
493 repo: Pleroma.Repo,
494 verbose: false,
495 prune: {:maxlen, 1500},
496 queues: [
497 activity_expiration: 10,
498 federator_incoming: 50,
499 federator_outgoing: 50,
500 web_push: 50,
501 mailer: 10,
502 transmogrifier: 20,
503 scheduled_activities: 10,
504 background: 5
505 ]
506
507 config :pleroma, :workers,
508 retries: [
509 federator_incoming: 5,
510 federator_outgoing: 5
511 ]
512
513 config :pleroma, :fetch_initial_posts,
514 enabled: false,
515 pages: 5
516
517 config :auto_linker,
518 opts: [
519 scheme: true,
520 extra: true,
521 # TODO: Set to :no_scheme when it works properly
522 validate_tld: true,
523 class: false,
524 strip_prefix: false,
525 new_window: false,
526 rel: "ugc"
527 ]
528
529 config :pleroma, :ldap,
530 enabled: System.get_env("LDAP_ENABLED") == "true",
531 host: System.get_env("LDAP_HOST") || "localhost",
532 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
533 ssl: System.get_env("LDAP_SSL") == "true",
534 sslopts: [],
535 tls: System.get_env("LDAP_TLS") == "true",
536 tlsopts: [],
537 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
538 uid: System.get_env("LDAP_UID") || "cn"
539
540 config :esshd,
541 enabled: false
542
543 oauth_consumer_strategies =
544 System.get_env("OAUTH_CONSUMER_STRATEGIES")
545 |> to_string()
546 |> String.split()
547 |> Enum.map(&hd(String.split(&1, ":")))
548
549 ueberauth_providers =
550 for strategy <- oauth_consumer_strategies do
551 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
552 strategy_module = String.to_atom(strategy_module_name)
553 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
554 end
555
556 config :ueberauth,
557 Ueberauth,
558 base_path: "/oauth",
559 providers: ueberauth_providers
560
561 config :pleroma,
562 :auth,
563 enforce_oauth_admin_scope_usage: false,
564 oauth_consumer_strategies: oauth_consumer_strategies
565
566 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
567
568 config :pleroma, Pleroma.Emails.UserEmail,
569 logo: nil,
570 styling: %{
571 link_color: "#d8a070",
572 background_color: "#2C3645",
573 content_background_color: "#1B2635",
574 header_color: "#d8a070",
575 text_color: "#b9b9ba",
576 text_muted_color: "#b9b9ba"
577 }
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 schedule: "0 0 * * 0",
590 interval: 7,
591 inactivity_threshold: 7
592 }
593
594 config :pleroma, :oauth2,
595 token_expires_in: 600,
596 issue_new_refresh_token: true,
597 clean_expired_tokens: false,
598 clean_expired_tokens_interval: 86_400_000
599
600 config :pleroma, :database, rum_enabled: false
601
602 config :pleroma, :env, Mix.env()
603
604 config :http_signatures,
605 adapter: Pleroma.Signature
606
607 config :pleroma, :rate_limit, authentication: {60_000, 15}
608
609 config :pleroma, Pleroma.ActivityExpiration, enabled: true
610
611 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
612
613 config :pleroma, :static_fe, enabled: false
614
615 config :pleroma, :web_cache_ttl,
616 activity_pub: nil,
617 activity_pub_question: 30_000
618
619 config :pleroma, :modules, runtime_dir: "instance/modules"
620
621 config :pleroma, configurable_from_database: false
622
623 config :swarm, node_blacklist: [~r/myhtml_.*$/]
624 # Import environment specific config. This must remain at the bottom
625 # of this file so it overrides the configuration defined above.
626 import_config "#{Mix.env()}.exs"