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:
32 # izAotX7777777777777777777777777777777777777777Y7n92:
33 # .;CoIIIIIUAA666666699999ZZZZZZZZZZZZZZZZZZZZ6ov.
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).
39 # This file is responsible for configuring your application
40 # and its dependencies with the aid of the Mix.Config module.
42 # This configuration file is loaded before any dependency and
43 # is restricted to this project.
46 # General application configuration
47 config :pleroma, ecto_repos: [Pleroma.Repo]
49 config :pleroma, Pleroma.Repo,
50 types: Pleroma.PostgresTypes,
51 telemetry_event: [Pleroma.Repo.Instrumenter],
54 config :pleroma, Pleroma.Captcha,
57 method: Pleroma.Captcha.Native
59 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
61 # Upload configuration
62 config :pleroma, Pleroma.Upload,
63 uploader: Pleroma.Uploaders.Local,
64 filters: [Pleroma.Upload.Filter.Dedupe],
68 redirect_on_failure: false,
69 max_body_length: 25 * 1_048_576,
71 follow_redirect: true,
75 filename_display_max_length: 30
77 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
79 config :pleroma, Pleroma.Uploaders.S3,
81 streaming_enabled: true,
82 public_endpoint: "https://s3.amazonaws.com"
84 config :pleroma, :emoji,
85 shortcode_globs: ["/emoji/custom/**/*.png"],
86 pack_extensions: [".png", ".gif"],
88 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
90 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
91 shared_pack_cache_seconds_per_file: 60
93 config :pleroma, :uri_schemes,
114 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
115 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
118 transport_log: false,
122 # Configures the endpoint
123 config :pleroma, Pleroma.Web.Endpoint,
124 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
125 url: [host: "localhost"],
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, []}}
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: [
149 # Configures Elixir's Logger
150 config :logger, :console,
152 format: "\n$time $metadata[$level] $message\n",
153 metadata: [:request_id]
155 config :logger, :ex_syslogger,
158 format: "$metadata[$level] $message",
159 metadata: [:request_id]
164 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
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"]
174 config :tesla, adapter: Tesla.Adapter.Hackney
176 # Configures http settings, upstream proxy etc.
177 config :pleroma, :http,
179 send_user_agent: true,
180 user_agent: :default,
183 config :pleroma, :instance,
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 instance_thumbnail: "/instance/thumbnail.jpeg",
192 remote_limit: 100_000,
193 upload_limit: 16_000_000,
194 avatar_upload_limit: 2_000_000,
195 background_upload_limit: 4_000_000,
196 banner_upload_limit: 4_000_000,
199 max_option_chars: 200,
201 max_expiration: 365 * 24 * 60 * 60
203 registrations_open: true,
204 invites_enabled: false,
205 account_activation_required: false,
207 federation_incoming_replies_max_depth: 100,
208 federation_reachability_timeout_days: 7,
209 federation_publisher_modules: [
210 Pleroma.Web.ActivityPub.Publisher
213 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
215 quarantined_instances: [],
216 managed_config: true,
217 static_dir: "instance/static/",
218 allowed_post_formats: [
224 mrf_transparency: true,
225 mrf_transparency_exclusions: [],
226 autofollowed_nicknames: [],
227 max_pinned_statuses: 1,
228 attachment_links: false,
229 welcome_user_nickname: nil,
230 welcome_message: nil,
231 max_report_comment_size: 1000,
232 safe_dm_mentions: false,
234 remote_post_retention_days: 90,
235 skip_thread_containment: true,
236 limit_to_local_content: :unauthenticated,
237 user_bio_length: 5000,
238 user_name_length: 100,
239 max_account_fields: 10,
240 max_remote_account_fields: 20,
241 account_field_name_length: 512,
242 account_field_value_length: 2048,
243 external_user_synchronization: true,
244 extended_nickname_format: true,
245 cleanup_attachments: false,
246 multi_factor_authentication: [
258 config :pleroma, :feed,
264 config :pleroma, :markup,
265 # XXX - unfortunately, inline images must be enabled by default right now, because
266 # of custom emoji. Issue #275 discusses defanging that somehow.
267 allow_inline_images: true,
268 allow_headings: false,
272 Pleroma.HTML.Scrubber.Default,
273 Pleroma.HTML.Transform.MediaProxy
276 config :pleroma, :frontend_configurations,
278 alwaysShowSubjectInput: true,
279 background: "/images/city.jpg",
280 collapseMessageWithSubject: false,
283 hideFilteredStatuses: false,
284 hideMutedPosts: false,
285 hidePostStats: false,
287 hideUserStats: false,
288 loginMethod: "password",
289 logo: "/static/logo.png",
292 minimalScopesMode: false,
293 noAttachmentLinks: false,
295 postContentType: "text/plain",
296 redirectRootLogin: "/main/friends",
297 redirectRootNoLogin: "/main/all",
300 showFeaturesPanel: true,
301 showInstanceSpecificPanel: false,
302 subjectLineBehavior: "email",
303 theme: "pleroma-dark",
304 webPushNotifications: false
307 showInstanceSpecificPanel: true
310 config :pleroma, :assets,
313 url: "/images/pleroma-fox-tan-smol.png",
314 mime_type: "image/png"
316 pleroma_fox_tan_shy: %{
317 url: "/images/pleroma-fox-tan-shy.png",
318 mime_type: "image/png"
321 default_mascot: :pleroma_fox_tan
323 config :pleroma, :manifest,
326 src: "/static/logo.png",
330 theme_color: "#282c37",
331 background_color: "#191b22"
333 config :pleroma, :activitypub,
334 unfollow_blocked: true,
335 outgoing_blocks: true,
336 follow_handshake_timeout: 500,
337 note_replies_output_limit: 5,
338 sign_object_fetches: true,
339 authorized_fetch_mode: false
341 config :pleroma, :streamer,
345 config :pleroma, :user, deny_follow_blocked: true
347 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
349 config :pleroma, :mrf_rejectnonpublic,
350 allow_followersonly: false,
353 config :pleroma, :mrf_hellthread,
354 delist_threshold: 10,
357 config :pleroma, :mrf_simple,
360 federated_timeline_removal: [],
368 config :pleroma, :mrf_keyword,
370 federated_timeline_removal: [],
373 config :pleroma, :mrf_subchain, match_actor: %{}
375 config :pleroma, :mrf_activity_expiration, days: 365
377 config :pleroma, :mrf_vocabulary,
381 config :pleroma, :mrf_object_age,
383 actions: [:delist, :strip_followers]
385 config :pleroma, :rich_media,
388 ignore_tld: ["local", "localdomain", "lan"],
390 Pleroma.Web.RichMedia.Parsers.TwitterCard,
391 Pleroma.Web.RichMedia.Parsers.OEmbed
393 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
395 config :pleroma, :media_proxy,
399 provider: Pleroma.Web.MediaProxy.Invalidation.Script
402 redirect_on_failure: false,
403 max_body_length: 25 * 1_048_576,
405 follow_redirect: true,
411 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
416 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
418 config :pleroma, :chat, enabled: true
420 config :phoenix, :format_encoders, json: Jason
422 config :phoenix, :json_library, Jason
424 config :phoenix, :filter_parameters, ["password", "confirm"]
426 config :pleroma, :gopher,
431 config :pleroma, Pleroma.Web.Metadata,
433 Pleroma.Web.Metadata.Providers.OpenGraph,
434 Pleroma.Web.Metadata.Providers.TwitterCard,
435 Pleroma.Web.Metadata.Providers.RelMe,
436 Pleroma.Web.Metadata.Providers.Feed
440 config :pleroma, :http_security,
443 sts_max_age: 31_536_000,
444 ct_max_age: 2_592_000,
445 referrer_policy: "same-origin"
449 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
454 "X-RateLimit-Remaining",
459 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
461 config :pleroma, Pleroma.User,
462 restricted_nicknames: [
495 config :pleroma, Oban,
498 prune: {:maxlen, 1500},
500 activity_expiration: 10,
501 federator_incoming: 50,
502 federator_outgoing: 50,
506 scheduled_activities: 10,
509 attachments_cleanup: 5,
513 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
514 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
515 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
516 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
517 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
520 config :pleroma, :workers,
522 federator_incoming: 5,
523 federator_outgoing: 5
529 # TODO: Set to :no_scheme when it works properly
537 config :pleroma, :ldap,
538 enabled: System.get_env("LDAP_ENABLED") == "true",
539 host: System.get_env("LDAP_HOST") || "localhost",
540 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
541 ssl: System.get_env("LDAP_SSL") == "true",
543 tls: System.get_env("LDAP_TLS") == "true",
545 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
546 uid: System.get_env("LDAP_UID") || "cn"
551 oauth_consumer_strategies =
552 System.get_env("OAUTH_CONSUMER_STRATEGIES")
555 |> Enum.map(&hd(String.split(&1, ":")))
557 ueberauth_providers =
558 for strategy <- oauth_consumer_strategies do
559 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
560 strategy_module = String.to_atom(strategy_module_name)
561 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
567 providers: ueberauth_providers
571 enforce_oauth_admin_scope_usage: true,
572 oauth_consumer_strategies: oauth_consumer_strategies
574 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
576 config :pleroma, Pleroma.Emails.UserEmail,
579 link_color: "#d8a070",
580 background_color: "#2C3645",
581 content_background_color: "#1B2635",
582 header_color: "#d8a070",
583 text_color: "#b9b9ba",
584 text_muted_color: "#b9b9ba"
587 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
589 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
591 config :pleroma, Pleroma.ScheduledActivity,
592 daily_user_limit: 25,
593 total_user_limit: 300,
596 config :pleroma, :email_notifications,
600 inactivity_threshold: 7
603 config :pleroma, :oauth2,
604 token_expires_in: 600,
605 issue_new_refresh_token: true,
606 clean_expired_tokens: false
608 config :pleroma, :database, rum_enabled: false
610 config :pleroma, :env, Mix.env()
612 config :http_signatures,
613 adapter: Pleroma.Signature
615 config :pleroma, :rate_limit,
616 authentication: {60_000, 15},
618 search: [{1000, 10}, {1000, 30}],
619 app_account_creation: {1_800_000, 25},
620 relations_actions: {10_000, 10},
621 relation_id_action: {60_000, 2},
622 statuses_actions: {10_000, 15},
623 status_id_action: {60_000, 3},
624 password_reset: {1_800_000, 5},
625 account_confirmation_resend: {8_640_000, 5},
626 ap_routes: {60_000, 15}
628 config :pleroma, Pleroma.ActivityExpiration, enabled: true
630 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
632 config :pleroma, :static_fe, enabled: false
634 config :pleroma, :web_cache_ttl,
636 activity_pub_question: 30_000
638 config :pleroma, :modules, runtime_dir: "instance/modules"
640 config :pleroma, configurable_from_database: false
642 config :pleroma, Pleroma.Repo,
643 parameters: [gin_fuzzy_search_limit: "500"],
646 config :pleroma, :connections_pool,
647 checkin_timeout: 250,
648 max_connections: 250,
651 await_up_timeout: 5_000
653 config :pleroma, :pools,
675 config :pleroma, :hackney_pools,
689 config :pleroma, :restrict_unauthenticated,
690 timelines: %{local: false, federated: false},
691 profiles: %{local: false, remote: false},
692 activities: %{local: false, remote: false}
694 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
696 # Import environment specific config. This must remain at the bottom
697 # of this file so it overrides the configuration defined above.
698 import_config "#{Mix.env()}.exs"