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 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],
67 filename_display_max_length: 30,
68 default_description: nil,
71 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
73 config :pleroma, Pleroma.Uploaders.S3,
75 bucket_namespace: nil,
76 truncated_namespace: nil,
77 streaming_enabled: true
80 # host: "s3.wasabisys.com", # required if not Amazon AWS
82 secret_access_key: nil,
83 # region: "us-east-1", # may be required for Amazon AWS
86 config :pleroma, :emoji,
87 shortcode_globs: ["/emoji/custom/**/*.png"],
88 pack_extensions: [".png", ".gif"],
90 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
92 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
93 shared_pack_cache_seconds_per_file: 60
95 config :pleroma, :uri_schemes,
117 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
118 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
121 transport_log: false,
125 # Configures the endpoint
126 config :pleroma, Pleroma.Web.Endpoint,
127 url: [host: "localhost"],
133 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
134 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
135 {Phoenix.Transports.WebSocket,
136 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
137 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
142 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
143 live_view: [signing_salt: "U5ELgdEwTD3n1+D5s0rY0AMg8/y1STxZ3Zvsl3bWh+oBcGrYdil0rXqPMRd3Glcq"],
144 signing_salt: "CqaoopA2",
145 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
146 pubsub_server: Pleroma.PubSub,
147 secure_cookie_flag: true,
148 extra_cookie_attrs: [
152 # Configures Elixir's Logger
153 config :logger, truncate: 65_536
155 config :logger, :console,
157 format: "\n$time $metadata[$level] $message\n",
158 metadata: [:request_id]
160 config :logger, :ex_syslogger,
163 format: "$metadata[$level] $message",
164 metadata: [:request_id]
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.Finch, name: MyFinch}
176 # Configures http settings, upstream proxy etc.
177 config :pleroma, :http,
178 pool_timeout: :timer.seconds(5),
179 receive_timeout: :timer.seconds(15),
181 user_agent: :default,
184 config :pleroma, :instance,
186 email: "example@example.com",
187 notify_email: "noreply@example.com",
188 description: "Akkoma: The cooler fediverse server",
189 background_image: "/images/city.jpg",
190 instance_thumbnail: "/instance/thumbnail.jpeg",
192 description_limit: 5_000,
193 remote_limit: 100_000,
194 upload_limit: 16_000_000,
195 avatar_upload_limit: 2_000_000,
196 background_upload_limit: 4_000_000,
197 banner_upload_limit: 4_000_000,
201 max_option_chars: 200,
203 max_expiration: 365 * 24 * 60 * 60
205 registrations_open: true,
206 invites_enabled: false,
207 account_activation_required: false,
208 account_approval_required: false,
210 federation_incoming_replies_max_depth: 100,
211 federation_reachability_timeout_days: 7,
212 federation_publisher_modules: [
213 Pleroma.Web.ActivityPub.Publisher
217 static_dir: "instance/static/",
218 allowed_post_formats: [
223 "text/x.misskeymarkdown"
225 staff_transparency: [],
226 autofollowed_nicknames: [],
227 autofollowing_nicknames: [],
228 max_pinned_statuses: 1,
229 attachment_links: false,
230 max_report_comment_size: 1000,
231 safe_dm_mentions: 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 registration_reason_length: 500,
243 external_user_synchronization: true,
244 extended_nickname_format: true,
245 cleanup_attachments: false,
246 multi_factor_authentication: [
257 show_reactions: true,
258 password_reset_token_validity: 60 * 60 * 24,
259 profile_directory: true,
260 privileged_staff: false,
262 max_frontend_settings_json_chars: 100_000,
263 export_prometheus_metrics: true
265 config :pleroma, :welcome,
268 sender_nickname: nil,
274 subject: "Welcome to <%= instance_name %>",
275 html: "Welcome to <%= instance_name %>",
276 text: "Welcome to <%= instance_name %>"
279 config :pleroma, :feed,
285 config :pleroma, :markup,
286 # XXX - unfortunately, inline images must be enabled by default right now, because
287 # of custom emoji. Issue #275 discusses defanging that somehow.
288 allow_inline_images: true,
289 allow_headings: false,
293 Pleroma.HTML.Scrubber.Default,
294 Pleroma.HTML.Transform.MediaProxy
297 config :pleroma, :frontend_configurations,
299 alwaysShowSubjectInput: true,
300 background: "/images/city.jpg",
301 collapseMessageWithSubject: false,
304 hideFilteredStatuses: false,
305 hideMutedPosts: false,
306 hidePostStats: false,
308 hideUserStats: false,
309 loginMethod: "password",
310 logo: "/static/logo.svg",
313 noAttachmentLinks: false,
315 postContentType: "text/plain",
316 redirectRootLogin: "/main/friends",
317 redirectRootNoLogin: "/main/public",
320 showFeaturesPanel: true,
321 showInstanceSpecificPanel: false,
322 subjectLineBehavior: "email",
323 theme: "pleroma-dark",
324 webPushNotifications: false,
325 conversationDisplay: "linear"
328 showInstanceSpecificPanel: true
331 config :pleroma, :assets,
334 url: "/images/pleroma-fox-tan-smol.png",
335 mime_type: "image/png"
337 pleroma_fox_tan_shy: %{
338 url: "/images/pleroma-fox-tan-shy.png",
339 mime_type: "image/png"
342 default_mascot: :pleroma_fox_tan
344 config :pleroma, :manifest,
347 src: "/static/logo.svg",
348 type: "image/svg+xml"
351 theme_color: "#282c37",
352 background_color: "#191b22"
354 config :pleroma, :activitypub,
355 unfollow_blocked: true,
356 outgoing_blocks: true,
357 blockers_visible: true,
358 follow_handshake_timeout: 500,
359 note_replies_output_limit: 5,
360 sign_object_fetches: true,
361 authorized_fetch_mode: false,
362 max_collection_objects: 50
364 config :pleroma, :streamer,
368 config :pleroma, :user, deny_follow_blocked: true
370 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
372 config :pleroma, :mrf_rejectnonpublic,
373 allow_followersonly: false,
376 config :pleroma, :mrf_hellthread,
377 delist_threshold: 10,
380 config :pleroma, :mrf_simple,
383 federated_timeline_removal: [],
393 config :pleroma, :mrf_keyword,
395 federated_timeline_removal: [],
398 config :pleroma, :mrf_hashtag,
401 federated_timeline_removal: []
403 config :pleroma, :mrf_subchain, match_actor: %{}
405 config :pleroma, :mrf_activity_expiration, days: 365
407 config :pleroma, :mrf_vocabulary,
411 config :pleroma, :mrf_inline_quote, prefix: "RE"
413 # threshold of 7 days
414 config :pleroma, :mrf_object_age,
416 actions: [:delist, :strip_followers]
418 config :pleroma, :mrf_follow_bot, follower_nickname: nil
420 config :pleroma, :rich_media,
423 ignore_tld: ["local", "localdomain", "lan"],
425 Pleroma.Web.RichMedia.Parsers.TwitterCard,
426 Pleroma.Web.RichMedia.Parsers.OEmbed
428 failure_backoff: 60_000,
429 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
431 config :pleroma, :media_proxy,
435 provider: Pleroma.Web.MediaProxy.Invalidation.Script
438 redirect_on_failure: false,
439 max_body_length: 25 * 1_048_576,
440 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
441 max_read_duration: 30_000
445 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
450 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
454 # Note: media preview proxy depends on media proxy to be enabled
455 config :pleroma, :media_preview_proxy,
457 thumbnail_max_width: 600,
458 thumbnail_max_height: 600,
460 min_content_length: 100 * 1024
462 config :pleroma, :shout,
466 config :phoenix, :format_encoders, json: Jason, "activity+json": Jason
468 config :phoenix, :json_library, Jason
470 config :phoenix, :filter_parameters, ["password", "confirm"]
472 config :pleroma, Pleroma.Web.Metadata,
474 Pleroma.Web.Metadata.Providers.OpenGraph,
475 Pleroma.Web.Metadata.Providers.TwitterCard
479 config :pleroma, Pleroma.Web.Metadata.Providers.Theme, theme_color: "#593196"
481 config :pleroma, Pleroma.Web.Preload,
483 Pleroma.Web.Preload.Providers.Instance
486 config :pleroma, :http_security,
489 sts_max_age: 63_072_000,
490 referrer_policy: "same-origin"
494 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
499 "X-RateLimit-Remaining",
504 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
506 config :pleroma, Pleroma.User,
507 restricted_nicknames: [
538 "verify_credentials",
539 "update_credentials",
542 "confirmation_resend",
547 config :pleroma, Oban,
551 activity_expiration: 10,
553 filter_expiration: 1,
555 federator_incoming: 50,
556 federator_outgoing: 50,
561 scheduled_activities: 10,
562 poll_notifications: 10,
565 attachments_cleanup: 1,
574 {Oban.Plugins.Reindexer, schedule: "@weekly"}
577 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
578 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker},
579 {"0 3 * * *", Pleroma.Workers.Cron.PruneDatabaseWorker}
582 config :pleroma, :workers,
584 federator_incoming: 5,
585 federator_outgoing: 5,
589 activity_expiration: :timer.seconds(5),
590 token_expiration: :timer.seconds(5),
591 filter_expiration: :timer.seconds(5),
592 backup: :timer.seconds(900),
593 federator_incoming: :timer.seconds(10),
594 federator_outgoing: :timer.seconds(10),
595 ingestion_queue: :timer.seconds(5),
596 web_push: :timer.seconds(5),
597 mailer: :timer.seconds(5),
598 transmogrifier: :timer.seconds(5),
599 scheduled_activities: :timer.seconds(5),
600 poll_notifications: :timer.seconds(5),
601 background: :timer.seconds(5),
602 remote_fetcher: :timer.seconds(10),
603 attachments_cleanup: :timer.seconds(900),
604 new_users_digest: :timer.seconds(10),
605 mute_expire: :timer.seconds(5),
606 search_indexing: :timer.seconds(5),
607 nodeinfo_fetcher: :timer.seconds(10),
608 database_prune: :timer.minutes(10)
611 config :pleroma, Pleroma.Formatter,
618 validate_tld: :no_scheme
620 config :pleroma, :ldap,
621 enabled: System.get_env("LDAP_ENABLED") == "true",
622 host: System.get_env("LDAP_HOST") || "localhost",
623 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
624 ssl: System.get_env("LDAP_SSL") == "true",
626 tls: System.get_env("LDAP_TLS") == "true",
628 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
629 uid: System.get_env("LDAP_UID") || "cn"
631 oauth_consumer_strategies =
632 "OAUTH_CONSUMER_STRATEGIES"
636 |> Enum.map(&hd(String.split(&1, ":")))
638 ueberauth_providers =
639 for strategy <- oauth_consumer_strategies do
640 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
641 strategy_module = String.to_atom(strategy_module_name)
642 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
648 providers: ueberauth_providers
650 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
652 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
655 api_client: Swoosh.ApiClient.Finch,
658 config :pleroma, Pleroma.Emails.UserEmail,
661 link_color: "#d8a070",
662 background_color: "#2C3645",
663 content_background_color: "#1B2635",
664 header_color: "#d8a070",
665 text_color: "#b9b9ba",
666 text_muted_color: "#b9b9ba"
669 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
671 config :pleroma, Pleroma.ScheduledActivity,
672 daily_user_limit: 25,
673 total_user_limit: 300,
676 config :pleroma, :email_notifications,
680 inactivity_threshold: 7
683 config :pleroma, :oauth2,
684 token_expires_in: 3600 * 24 * 365 * 100,
685 issue_new_refresh_token: true,
686 clean_expired_tokens: false
688 config :pleroma, :database, rum_enabled: false
690 config :pleroma, :features, improved_hashtag_timeline: :auto
692 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
694 config :pleroma, :env, Mix.env()
696 config :http_signatures,
697 adapter: Pleroma.Signature
699 config :pleroma, :rate_limit,
700 authentication: {60_000, 15},
702 search: [{1000, 10}, {1000, 30}],
703 app_account_creation: {1_800_000, 25},
704 relations_actions: {10_000, 10},
705 relation_id_action: {60_000, 2},
706 statuses_actions: {10_000, 15},
707 status_id_action: {60_000, 3},
708 password_reset: {1_800_000, 5},
709 account_confirmation_resend: {8_640_000, 5},
710 ap_routes: {60_000, 15}
712 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
714 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
716 headers: ["x-forwarded-for"],
727 config :pleroma, :static_fe, enabled: false
729 # Example of frontend configuration
730 # This example will make us serve the primary frontend from the
731 # frontends directory within your `:pleroma, :instance, static_dir`.
732 # e.g., instance/static/frontends/pleroma/develop/
734 # With no frontend configuration, the bundled files from the `static` directory will
737 # config :pleroma, :frontends,
738 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
739 # admin: %{"name" => "admin-fe", "ref" => "stable"},
740 # mastodon: %{"enabled" => true, "name" => "mastodon-fe", "ref" => "develop"}
743 config :pleroma, :frontends,
744 primary: %{"name" => "pleroma-fe", "ref" => "stable"},
745 admin: %{"name" => "admin-fe", "ref" => "stable"},
746 mastodon: %{"name" => "mastodon-fe", "ref" => "akkoma"},
748 "name" => "swagger-ui",
754 "name" => "pleroma-fe",
755 "git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
757 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/akkoma-fe.zip",
759 "build_dir" => "dist"
761 # Mastodon-Fe cannot be set as a primary - this is only here so we can update this seperately
763 "name" => "mastodon-fe",
764 "git" => "https://akkoma.dev/AkkomaGang/masto-fe",
766 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/masto-fe.zip",
767 "build_dir" => "distribution",
771 "name" => "fedibird-fe",
772 "git" => "https://akkoma.dev/AkkomaGang/fedibird-fe",
774 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/fedibird-fe.zip",
775 "build_dir" => "distribution",
779 "name" => "admin-fe",
780 "git" => "https://akkoma.dev/AkkomaGang/admin-fe",
782 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/admin-fe.zip",
785 # For developers - enables a swagger frontend to view the openapi spec
787 "name" => "swagger-ui",
788 "git" => "https://github.com/swagger-api/swagger-ui",
789 "build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/swagger-ui.zip",
790 "build_dir" => "dist",
795 config :pleroma, :web_cache_ttl,
797 activity_pub_question: 30_000
799 config :pleroma, :modules, runtime_dir: "instance/modules"
801 config :pleroma, configurable_from_database: false
803 config :pleroma, Pleroma.Repo,
804 parameters: [gin_fuzzy_search_limit: "500"],
807 config :pleroma, :majic_pool, size: 2
809 private_instance? = :if_instance_is_private
811 config :pleroma, :restrict_unauthenticated,
812 timelines: %{local: private_instance?, federated: private_instance?},
813 profiles: %{local: private_instance?, remote: private_instance?},
814 activities: %{local: private_instance?, remote: private_instance?}
816 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
818 config :pleroma, :mrf,
819 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
821 transparency_exclusions: [],
822 transparency_obfuscate_domains: []
824 config :ex_aws, http_client: Pleroma.HTTP.ExAws
826 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
828 config :pleroma, :instances_favicons, enabled: true
829 config :pleroma, :instances_nodeinfo, enabled: true
831 config :floki, :html_parser, Floki.HTMLParser.FastHtml
833 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
835 config :pleroma, Pleroma.User.Backup,
836 purge_after_days: 30,
840 config :pleroma, ConcurrentLimiter, [
841 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
842 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]},
843 {Pleroma.Search, [max_running: 30, max_waiting: 50]}
846 config :pleroma, Pleroma.Web.WebFinger, domain: nil, update_nickname_on_user_fetch: true
848 config :pleroma, Pleroma.Search, module: Pleroma.Search.DatabaseSearch
850 config :pleroma, Pleroma.Search.Meilisearch,
851 url: "http://127.0.0.1:7700/",
853 initial_indexing_chunk_size: 100_000
855 config :pleroma, Pleroma.Search.Elasticsearch.Cluster,
856 url: "http://localhost:9200",
858 password: "changeme",
859 api: Elasticsearch.API.HTTP,
863 settings: "priv/es-mappings/activity.json",
864 store: Pleroma.Search.Elasticsearch.Store,
865 sources: [Pleroma.Activity],
866 bulk_page_size: 1000,
867 bulk_wait_interval: 15_000
871 config :pleroma, :translator,
873 module: Pleroma.Akkoma.Translators.DeepL
875 config :pleroma, :deepl,
876 # either :free or :pro
880 config :pleroma, :libre_translate,
881 url: "http://127.0.0.1:5000",
884 # Import environment specific config. This must remain at the bottom
885 # of this file so it overrides the configuration defined above.
886 import_config "#{Mix.env()}.exs"