Merge branch 'ci/docker-imaging' 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 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 dynamic_configuration: false,
269 user_bio_length: 5000,
270 user_name_length: 100,
271 max_account_fields: 10,
272 max_remote_account_fields: 20,
273 account_field_name_length: 512,
274 account_field_value_length: 2048,
275 external_user_synchronization: true,
276 extended_nickname_format: true
277
278 config :pleroma, :feed,
279 post_title: %{
280 max_length: 100,
281 omission: "..."
282 }
283
284 config :pleroma, :markup,
285 # XXX - unfortunately, inline images must be enabled by default right now, because
286 # of custom emoji. Issue #275 discusses defanging that somehow.
287 allow_inline_images: true,
288 allow_headings: false,
289 allow_tables: false,
290 allow_fonts: false,
291 scrub_policy: [
292 Pleroma.HTML.Scrubber.Default,
293 Pleroma.HTML.Transform.MediaProxy
294 ]
295
296 config :pleroma, :frontend_configurations,
297 pleroma_fe: %{
298 theme: "pleroma-dark",
299 logo: "/static/logo.png",
300 background: "/images/city.jpg",
301 redirectRootNoLogin: "/main/all",
302 redirectRootLogin: "/main/friends",
303 showInstanceSpecificPanel: true,
304 scopeOptionsEnabled: false,
305 formattingOptionsEnabled: false,
306 collapseMessageWithSubject: false,
307 hidePostStats: false,
308 hideUserStats: false,
309 scopeCopy: true,
310 subjectLineBehavior: "email",
311 alwaysShowSubjectInput: true
312 },
313 masto_fe: %{
314 showInstanceSpecificPanel: true
315 }
316
317 config :pleroma, :assets,
318 mascots: [
319 pleroma_fox_tan: %{
320 url: "/images/pleroma-fox-tan-smol.png",
321 mime_type: "image/png"
322 },
323 pleroma_fox_tan_shy: %{
324 url: "/images/pleroma-fox-tan-shy.png",
325 mime_type: "image/png"
326 }
327 ],
328 default_mascot: :pleroma_fox_tan
329
330 config :pleroma, :manifest,
331 icons: [
332 %{
333 src: "/static/logo.png",
334 type: "image/png"
335 }
336 ],
337 theme_color: "#282c37",
338 background_color: "#191b22"
339
340 config :pleroma, :activitypub,
341 unfollow_blocked: true,
342 outgoing_blocks: true,
343 follow_handshake_timeout: 500,
344 sign_object_fetches: true
345
346 config :pleroma, :streamer,
347 workers: 3,
348 overflow_workers: 2
349
350 config :pleroma, :user, deny_follow_blocked: true
351
352 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
353
354 config :pleroma, :mrf_rejectnonpublic,
355 allow_followersonly: false,
356 allow_direct: false
357
358 config :pleroma, :mrf_hellthread,
359 delist_threshold: 10,
360 reject_threshold: 20
361
362 config :pleroma, :mrf_simple,
363 media_removal: [],
364 media_nsfw: [],
365 federated_timeline_removal: [],
366 report_removal: [],
367 reject: [],
368 accept: [],
369 avatar_removal: [],
370 banner_removal: []
371
372 config :pleroma, :mrf_keyword,
373 reject: [],
374 federated_timeline_removal: [],
375 replace: []
376
377 config :pleroma, :mrf_subchain, match_actor: %{}
378
379 config :pleroma, :mrf_vocabulary,
380 accept: [],
381 reject: []
382
383 config :pleroma, :mrf_object_age,
384 threshold: 172_800,
385 actions: [:delist, :strip_followers]
386
387 config :pleroma, :rich_media,
388 enabled: true,
389 ignore_hosts: [],
390 ignore_tld: ["local", "localdomain", "lan"],
391 parsers: [
392 Pleroma.Web.RichMedia.Parsers.TwitterCard,
393 Pleroma.Web.RichMedia.Parsers.OGP,
394 Pleroma.Web.RichMedia.Parsers.OEmbed
395 ],
396 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
397
398 config :pleroma, :media_proxy,
399 enabled: false,
400 proxy_opts: [
401 redirect_on_failure: false,
402 max_body_length: 25 * 1_048_576,
403 http: [
404 follow_redirect: true,
405 pool: :media
406 ]
407 ],
408 whitelist: []
409
410 config :pleroma, :chat, enabled: true
411
412 config :phoenix, :format_encoders, json: Jason
413
414 config :phoenix, :json_library, Jason
415
416 config :pleroma, :gopher,
417 enabled: false,
418 ip: {0, 0, 0, 0},
419 port: 9999
420
421 config :pleroma, Pleroma.Web.Metadata,
422 providers: [
423 Pleroma.Web.Metadata.Providers.OpenGraph,
424 Pleroma.Web.Metadata.Providers.TwitterCard,
425 Pleroma.Web.Metadata.Providers.RelMe,
426 Pleroma.Web.Metadata.Providers.Feed
427 ],
428 unfurl_nsfw: false
429
430 config :pleroma, :suggestions,
431 enabled: false,
432 third_party_engine:
433 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
434 timeout: 300_000,
435 limit: 40,
436 web: "https://vinayaka.distsn.org"
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 ]
507
508 config :pleroma, :workers,
509 retries: [
510 federator_incoming: 5,
511 federator_outgoing: 5
512 ]
513
514 config :pleroma, :fetch_initial_posts,
515 enabled: false,
516 pages: 5
517
518 config :auto_linker,
519 opts: [
520 scheme: true,
521 extra: true,
522 # TODO: Set to :no_scheme when it works properly
523 validate_tld: true,
524 class: false,
525 strip_prefix: false,
526 new_window: false,
527 rel: "ugc"
528 ]
529
530 config :pleroma, :ldap,
531 enabled: System.get_env("LDAP_ENABLED") == "true",
532 host: System.get_env("LDAP_HOST") || "localhost",
533 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
534 ssl: System.get_env("LDAP_SSL") == "true",
535 sslopts: [],
536 tls: System.get_env("LDAP_TLS") == "true",
537 tlsopts: [],
538 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
539 uid: System.get_env("LDAP_UID") || "cn"
540
541 config :esshd,
542 enabled: false
543
544 oauth_consumer_strategies =
545 System.get_env("OAUTH_CONSUMER_STRATEGIES")
546 |> to_string()
547 |> String.split()
548 |> Enum.map(&hd(String.split(&1, ":")))
549
550 ueberauth_providers =
551 for strategy <- oauth_consumer_strategies do
552 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
553 strategy_module = String.to_atom(strategy_module_name)
554 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
555 end
556
557 config :ueberauth,
558 Ueberauth,
559 base_path: "/oauth",
560 providers: ueberauth_providers
561
562 config :pleroma,
563 :auth,
564 enforce_oauth_admin_scope_usage: true,
565 oauth_consumer_strategies: oauth_consumer_strategies
566
567 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
568
569 config :pleroma, Pleroma.Emails.UserEmail,
570 logo: nil,
571 styling: %{
572 link_color: "#d8a070",
573 background_color: "#2C3645",
574 content_background_color: "#1B2635",
575 header_color: "#d8a070",
576 text_color: "#b9b9ba",
577 text_muted_color: "#b9b9ba"
578 }
579
580 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
581
582 config :pleroma, Pleroma.ScheduledActivity,
583 daily_user_limit: 25,
584 total_user_limit: 300,
585 enabled: true
586
587 config :pleroma, :email_notifications,
588 digest: %{
589 active: false,
590 schedule: "0 0 * * 0",
591 interval: 7,
592 inactivity_threshold: 7
593 }
594
595 config :pleroma, :oauth2,
596 token_expires_in: 600,
597 issue_new_refresh_token: true,
598 clean_expired_tokens: false,
599 clean_expired_tokens_interval: 86_400_000
600
601 config :pleroma, :database, rum_enabled: false
602
603 config :pleroma, :env, Mix.env()
604
605 config :http_signatures,
606 adapter: Pleroma.Signature
607
608 config :pleroma, :rate_limit, authentication: {60_000, 15}
609
610 config :pleroma, Pleroma.ActivityExpiration, enabled: true
611
612 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
613
614 config :pleroma, :static_fe, enabled: false
615
616 config :pleroma, :web_cache_ttl,
617 activity_pub: nil,
618 activity_pub_question: 30_000
619
620 config :pleroma, :modules, runtime_dir: "instance/modules"
621
622 config :swarm, node_blacklist: [~r/myhtml_.*$/]
623 # Import environment specific config. This must remain at the bottom
624 # of this file so it overrides the configuration defined above.
625 import_config "#{Mix.env()}.exs"