merge 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: false,
56 seconds_valid: 60,
57 method: Pleroma.Captcha.Kocaptcha
58
59 config :pleroma, :hackney_pools,
60 federation: [
61 max_connections: 50,
62 timeout: 150_000
63 ],
64 media: [
65 max_connections: 50,
66 timeout: 150_000
67 ],
68 upload: [
69 max_connections: 25,
70 timeout: 300_000
71 ]
72
73 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
74
75 # Upload configuration
76 config :pleroma, Pleroma.Upload,
77 uploader: Pleroma.Uploaders.Local,
78 filters: [Pleroma.Upload.Filter.Dedupe],
79 link_name: true,
80 proxy_remote: false,
81 proxy_opts: [
82 redirect_on_failure: false,
83 max_body_length: 25 * 1_048_576,
84 http: [
85 follow_redirect: true,
86 pool: :upload
87 ]
88 ]
89
90 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
91
92 config :pleroma, Pleroma.Uploaders.S3,
93 bucket: nil,
94 public_endpoint: "https://s3.amazonaws.com"
95
96 config :pleroma, Pleroma.Uploaders.MDII,
97 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
98 files: "https://mdii.sakura.ne.jp"
99
100 config :pleroma, :emoji,
101 shortcode_globs: ["/emoji/custom/**/*.png"],
102 pack_extensions: [".png", ".gif"],
103 groups: [
104 # Put groups that have higher priority than defaults here. Example in `docs/config/custom_emoji.md`
105 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
106 ],
107 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json"
108
109 config :pleroma, :uri_schemes,
110 valid_schemes: [
111 "https",
112 "http",
113 "dat",
114 "dweb",
115 "gopher",
116 "ipfs",
117 "ipns",
118 "irc",
119 "ircs",
120 "magnet",
121 "mailto",
122 "mumble",
123 "ssb",
124 "xmpp"
125 ]
126
127 websocket_config = [
128 path: "/websocket",
129 serializer: [
130 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
131 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
132 ],
133 timeout: 60_000,
134 transport_log: false,
135 compress: false
136 ]
137
138 # Configures the endpoint
139 config :pleroma, Pleroma.Web.Endpoint,
140 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
141 url: [host: "localhost"],
142 http: [
143 ip: {127, 0, 0, 1},
144 dispatch: [
145 {:_,
146 [
147 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
148 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
149 {Phoenix.Transports.WebSocket,
150 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
151 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
152 ]}
153 ]
154 ],
155 protocol: "https",
156 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
157 signing_salt: "CqaoopA2",
158 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
159 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
160 secure_cookie_flag: true,
161 extra_cookie_attrs: [
162 "SameSite=Lax"
163 ]
164
165 # Configures Elixir's Logger
166 config :logger, :console,
167 format: "$time $metadata[$level] $message\n",
168 metadata: [:request_id]
169
170 config :logger, :ex_syslogger,
171 level: :debug,
172 ident: "pleroma",
173 format: "$metadata[$level] $message",
174 metadata: [:request_id]
175
176 config :quack,
177 level: :warn,
178 meta: [:all],
179 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
180
181 config :mime, :types, %{
182 "application/xml" => ["xml"],
183 "application/xrd+xml" => ["xrd+xml"],
184 "application/jrd+json" => ["jrd+json"],
185 "application/activity+json" => ["activity+json"],
186 "application/ld+json" => ["activity+json"]
187 }
188
189 config :tesla, adapter: Tesla.Adapter.Hackney
190
191 # Configures http settings, upstream proxy etc.
192 config :pleroma, :http,
193 proxy_url: nil,
194 send_user_agent: true,
195 adapter: [
196 ssl_options: [
197 # We don't support TLS v1.3 yet
198 versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
199 ]
200 ]
201
202 config :pleroma, :instance,
203 name: "Pleroma",
204 email: "example@example.com",
205 notify_email: "noreply@example.com",
206 description: "A Pleroma instance, an alternative fediverse server",
207 limit: 5_000,
208 remote_limit: 100_000,
209 upload_limit: 16_000_000,
210 avatar_upload_limit: 2_000_000,
211 background_upload_limit: 4_000_000,
212 banner_upload_limit: 4_000_000,
213 poll_limits: %{
214 max_options: 20,
215 max_option_chars: 200,
216 min_expiration: 0,
217 max_expiration: 365 * 24 * 60 * 60
218 },
219 registrations_open: true,
220 federating: true,
221 federation_incoming_replies_max_depth: 100,
222 federation_reachability_timeout_days: 7,
223 federation_publisher_modules: [
224 Pleroma.Web.ActivityPub.Publisher,
225 Pleroma.Web.Websub,
226 Pleroma.Web.Salmon
227 ],
228 allow_relay: true,
229 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
230 public: true,
231 quarantined_instances: [],
232 managed_config: true,
233 static_dir: "instance/static/",
234 allowed_post_formats: [
235 "text/plain",
236 "text/html",
237 "text/markdown",
238 "text/bbcode"
239 ],
240 mrf_transparency: true,
241 autofollowed_nicknames: [],
242 max_pinned_statuses: 1,
243 no_attachment_links: false,
244 welcome_user_nickname: nil,
245 welcome_message: nil,
246 max_report_comment_size: 1000,
247 safe_dm_mentions: false,
248 healthcheck: false,
249 remote_post_retention_days: 90,
250 skip_thread_containment: true,
251 limit_to_local_content: :unauthenticated,
252 dynamic_configuration: false,
253 external_user_synchronization: true
254
255 config :pleroma, :markup,
256 # XXX - unfortunately, inline images must be enabled by default right now, because
257 # of custom emoji. Issue #275 discusses defanging that somehow.
258 allow_inline_images: true,
259 allow_headings: false,
260 allow_tables: false,
261 allow_fonts: false,
262 scrub_policy: [
263 Pleroma.HTML.Transform.MediaProxy,
264 Pleroma.HTML.Scrubber.Default
265 ]
266
267 config :pleroma, :frontend_configurations,
268 pleroma_fe: %{
269 theme: "pleroma-dark",
270 logo: "/static/logo.png",
271 background: "/images/city.jpg",
272 redirectRootNoLogin: "/main/all",
273 redirectRootLogin: "/main/friends",
274 showInstanceSpecificPanel: true,
275 scopeOptionsEnabled: false,
276 formattingOptionsEnabled: false,
277 collapseMessageWithSubject: false,
278 hidePostStats: false,
279 hideUserStats: false,
280 scopeCopy: true,
281 subjectLineBehavior: "email",
282 alwaysShowSubjectInput: true
283 },
284 masto_fe: %{
285 showInstanceSpecificPanel: true
286 }
287
288 config :pleroma, :assets,
289 mascots: [
290 pleroma_fox_tan: %{
291 url: "/images/pleroma-fox-tan-smol.png",
292 mime_type: "image/png"
293 },
294 pleroma_fox_tan_shy: %{
295 url: "/images/pleroma-fox-tan-shy.png",
296 mime_type: "image/png"
297 }
298 ],
299 default_mascot: :pleroma_fox_tan
300
301 config :pleroma, :activitypub,
302 accept_blocks: true,
303 unfollow_blocked: true,
304 outgoing_blocks: true,
305 follow_handshake_timeout: 500
306
307 config :pleroma, :user, deny_follow_blocked: true
308
309 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
310
311 config :pleroma, :mrf_rejectnonpublic,
312 allow_followersonly: false,
313 allow_direct: false
314
315 config :pleroma, :mrf_hellthread,
316 delist_threshold: 10,
317 reject_threshold: 20
318
319 config :pleroma, :mrf_simple,
320 media_removal: [],
321 media_nsfw: [],
322 federated_timeline_removal: [],
323 report_removal: [],
324 reject: [],
325 accept: [],
326 avatar_removal: [],
327 banner_removal: []
328
329 config :pleroma, :mrf_keyword,
330 reject: [],
331 federated_timeline_removal: [],
332 replace: []
333
334 config :pleroma, :mrf_subchain, match_actor: %{}
335
336 config :pleroma, :rich_media,
337 enabled: true,
338 ignore_hosts: [],
339 ignore_tld: ["local", "localdomain", "lan"]
340
341 config :pleroma, :media_proxy,
342 enabled: false,
343 proxy_opts: [
344 redirect_on_failure: false,
345 max_body_length: 25 * 1_048_576,
346 http: [
347 follow_redirect: true,
348 pool: :media
349 ]
350 ],
351 whitelist: []
352
353 config :pleroma, :chat, enabled: true
354
355 config :phoenix, :format_encoders, json: Jason
356
357 config :pleroma, :gopher,
358 enabled: false,
359 ip: {0, 0, 0, 0},
360 port: 9999
361
362 config :pleroma, Pleroma.Web.Metadata,
363 providers: [
364 Pleroma.Web.Metadata.Providers.OpenGraph,
365 Pleroma.Web.Metadata.Providers.TwitterCard,
366 Pleroma.Web.Metadata.Providers.RelMe
367 ],
368 unfurl_nsfw: false
369
370 config :pleroma, :suggestions,
371 enabled: false,
372 third_party_engine:
373 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
374 timeout: 300_000,
375 limit: 40,
376 web: "https://vinayaka.distsn.org"
377
378 config :pleroma, :http_security,
379 enabled: true,
380 sts: false,
381 sts_max_age: 31_536_000,
382 ct_max_age: 2_592_000,
383 referrer_policy: "same-origin"
384
385 config :cors_plug,
386 max_age: 86_400,
387 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
388 expose: [
389 "Link",
390 "X-RateLimit-Reset",
391 "X-RateLimit-Limit",
392 "X-RateLimit-Remaining",
393 "X-Request-Id",
394 "Idempotency-Key"
395 ],
396 credentials: true,
397 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
398
399 config :pleroma, Pleroma.User,
400 restricted_nicknames: [
401 ".well-known",
402 "~",
403 "about",
404 "activities",
405 "api",
406 "auth",
407 "check_password",
408 "dev",
409 "friend-requests",
410 "inbox",
411 "internal",
412 "main",
413 "media",
414 "nodeinfo",
415 "notice",
416 "oauth",
417 "objects",
418 "ostatus_subscribe",
419 "pleroma",
420 "proxy",
421 "push",
422 "registration",
423 "relay",
424 "settings",
425 "status",
426 "tag",
427 "user-search",
428 "user_exists",
429 "users",
430 "web"
431 ]
432
433 config :pleroma, Pleroma.Web.Federator.RetryQueue,
434 enabled: false,
435 max_jobs: 20,
436 initial_timeout: 30,
437 max_retries: 5
438
439 config :pleroma_job_queue, :queues,
440 federator_incoming: 50,
441 federator_outgoing: 50,
442 web_push: 50,
443 mailer: 10,
444 transmogrifier: 20,
445 scheduled_activities: 10,
446 background: 5
447
448 config :pleroma, :fetch_initial_posts,
449 enabled: false,
450 pages: 5
451
452 config :auto_linker,
453 opts: [
454 scheme: true,
455 extra: true,
456 # TODO: Set to :no_scheme when it works properly
457 validate_tld: true,
458 class: false,
459 strip_prefix: false,
460 new_window: false,
461 rel: false
462 ]
463
464 config :pleroma, :ldap,
465 enabled: System.get_env("LDAP_ENABLED") == "true",
466 host: System.get_env("LDAP_HOST") || "localhost",
467 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
468 ssl: System.get_env("LDAP_SSL") == "true",
469 sslopts: [],
470 tls: System.get_env("LDAP_TLS") == "true",
471 tlsopts: [],
472 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
473 uid: System.get_env("LDAP_UID") || "cn"
474
475 config :esshd,
476 enabled: false
477
478 oauth_consumer_strategies =
479 System.get_env("OAUTH_CONSUMER_STRATEGIES")
480 |> to_string()
481 |> String.split()
482 |> Enum.map(&hd(String.split(&1, ":")))
483
484 ueberauth_providers =
485 for strategy <- oauth_consumer_strategies do
486 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
487 strategy_module = String.to_atom(strategy_module_name)
488 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
489 end
490
491 config :ueberauth,
492 Ueberauth,
493 base_path: "/oauth",
494 providers: ueberauth_providers
495
496 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
497
498 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
499
500 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
501
502 config :pleroma, Pleroma.ScheduledActivity,
503 daily_user_limit: 25,
504 total_user_limit: 300,
505 enabled: true
506
507 config :pleroma, :email_notifications,
508 digest: %{
509 active: false,
510 schedule: "0 0 * * 0",
511 interval: 7,
512 inactivity_threshold: 7
513 }
514
515 config :pleroma, :oauth2,
516 token_expires_in: 600,
517 issue_new_refresh_token: true,
518 clean_expired_tokens: false,
519 clean_expired_tokens_interval: 86_400_000
520
521 config :pleroma, :database, rum_enabled: false
522
523 config :pleroma, :env, Mix.env()
524
525 config :http_signatures,
526 adapter: Pleroma.Signature
527
528 config :pleroma, :rate_limit,
529 search: [{1000, 10}, {1000, 30}],
530 app_account_creation: {1_800_000, 25}
531
532 # Import environment specific config. This must remain at the bottom
533 # of this file so it overrides the configuration defined above.
534 import_config "#{Mix.env()}.exs"