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]
53 config :pleroma, Pleroma.Captcha,
56 method: Pleroma.Captcha.Kocaptcha
58 config :pleroma, :hackney_pools,
72 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
74 # Upload configuration
75 config :pleroma, Pleroma.Upload,
76 uploader: Pleroma.Uploaders.Local,
77 filters: [Pleroma.Upload.Filter.Dedupe],
81 redirect_on_failure: false,
82 max_body_length: 25 * 1_048_576,
84 follow_redirect: true,
89 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
91 config :pleroma, Pleroma.Uploaders.S3,
93 public_endpoint: "https://s3.amazonaws.com"
95 config :pleroma, Pleroma.Uploaders.MDII,
96 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
97 files: "https://mdii.sakura.ne.jp"
99 config :pleroma, :emoji,
100 shortcode_globs: ["/emoji/custom/**/*.png"],
102 # Put groups that have higher priority than defaults here. Example in `docs/config/custom_emoji.md`
103 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
105 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json"
107 config :pleroma, :uri_schemes,
128 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
129 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
132 transport_log: false,
136 # Configures the endpoint
137 config :pleroma, Pleroma.Web.Endpoint,
138 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
139 url: [host: "localhost"],
144 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
145 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
146 {Phoenix.Transports.WebSocket,
147 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
148 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
153 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
154 signing_salt: "CqaoopA2",
155 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
156 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
157 secure_cookie_flag: true,
158 extra_cookie_attrs: [
162 # Configures Elixir's Logger
163 config :logger, :console,
164 format: "$time $metadata[$level] $message\n",
165 metadata: [:request_id]
167 config :logger, :ex_syslogger,
170 format: "$metadata[$level] $message",
171 metadata: [:request_id]
176 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
178 config :mime, :types, %{
179 "application/xml" => ["xml"],
180 "application/xrd+xml" => ["xrd+xml"],
181 "application/jrd+json" => ["jrd+json"],
182 "application/activity+json" => ["activity+json"],
183 "application/ld+json" => ["activity+json"]
186 config :pleroma, :websub, Pleroma.Web.Websub
187 config :pleroma, :ostatus, Pleroma.Web.OStatus
188 config :pleroma, :httpoison, Pleroma.HTTP
189 config :tesla, adapter: Tesla.Adapter.Hackney
191 # Configures http settings, upstream proxy etc.
192 config :pleroma, :http,
196 # We don't support TLS v1.3 yet
197 versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
201 config :pleroma, :instance,
203 email: "example@example.com",
204 notify_email: "noreply@example.com",
205 description: "A Pleroma instance, an alternative fediverse server",
207 remote_limit: 100_000,
208 upload_limit: 16_000_000,
209 avatar_upload_limit: 2_000_000,
210 background_upload_limit: 4_000_000,
211 banner_upload_limit: 4_000_000,
212 registrations_open: true,
214 federation_reachability_timeout_days: 7,
216 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
218 quarantined_instances: [],
219 managed_config: true,
220 static_dir: "instance/static/",
221 allowed_post_formats: [
227 mrf_transparency: true,
228 autofollowed_nicknames: [],
229 max_pinned_statuses: 1,
230 no_attachment_links: false,
231 welcome_user_nickname: nil,
232 welcome_message: nil,
233 max_report_comment_size: 1000,
234 safe_dm_mentions: false,
237 config :pleroma, :markup,
238 # XXX - unfortunately, inline images must be enabled by default right now, because
239 # of custom emoji. Issue #275 discusses defanging that somehow.
240 allow_inline_images: true,
241 allow_headings: false,
245 Pleroma.HTML.Transform.MediaProxy,
246 Pleroma.HTML.Scrubber.Default
249 # Deprecated, will be gone in 1.0
250 config :pleroma, :fe,
251 theme: "pleroma-dark",
252 logo: "/static/logo.png",
254 logo_margin: "0.1em",
255 background: "/static/aurora_borealis.jpg",
256 redirect_root_no_login: "/main/all",
257 redirect_root_login: "/main/friends",
258 show_instance_panel: true,
259 scope_options_enabled: false,
260 formatting_options_enabled: false,
261 collapse_message_with_subject: false,
262 hide_post_stats: false,
263 hide_user_stats: false,
265 subject_line_behavior: "email",
266 always_show_subject_input: true
268 config :pleroma, :frontend_configurations,
270 theme: "pleroma-dark",
271 logo: "/static/logo.png",
272 background: "/images/city.jpg",
273 redirectRootNoLogin: "/main/all",
274 redirectRootLogin: "/main/friends",
275 showInstanceSpecificPanel: true,
276 scopeOptionsEnabled: false,
277 formattingOptionsEnabled: false,
278 collapseMessageWithSubject: false,
279 hidePostStats: false,
280 hideUserStats: false,
282 subjectLineBehavior: "email",
283 alwaysShowSubjectInput: true
286 showInstanceSpecificPanel: true
289 config :pleroma, :activitypub,
291 unfollow_blocked: true,
292 outgoing_blocks: true,
293 follow_handshake_timeout: 500
295 config :pleroma, :user, deny_follow_blocked: true
297 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
299 config :pleroma, :mrf_rejectnonpublic,
300 allow_followersonly: false,
303 config :pleroma, :mrf_hellthread,
304 delist_threshold: 10,
307 config :pleroma, :mrf_simple,
310 federated_timeline_removal: [],
314 config :pleroma, :mrf_keyword,
316 federated_timeline_removal: [],
319 config :pleroma, :rich_media, enabled: true
321 config :pleroma, :media_proxy,
324 redirect_on_failure: false,
325 max_body_length: 25 * 1_048_576,
327 follow_redirect: true,
333 config :pleroma, :chat, enabled: true
335 config :phoenix, :format_encoders, json: Jason
337 config :pleroma, :gopher,
342 config :pleroma, Pleroma.Web.Metadata,
343 providers: [Pleroma.Web.Metadata.Providers.RelMe],
346 config :pleroma, :suggestions,
349 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
352 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
354 config :pleroma, :http_security,
357 sts_max_age: 31_536_000,
358 ct_max_age: 2_592_000,
359 referrer_policy: "same-origin"
363 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
368 "X-RateLimit-Remaining",
373 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
375 config :pleroma, Pleroma.User,
376 restricted_nicknames: [
407 config :pleroma, Pleroma.Web.Federator.RetryQueue,
413 config :pleroma_job_queue, :queues,
414 federator_incoming: 50,
415 federator_outgoing: 50,
419 scheduled_activities: 10,
422 config :pleroma, :fetch_initial_posts,
436 config :pleroma, :ldap,
437 enabled: System.get_env("LDAP_ENABLED") == "true",
438 host: System.get_env("LDAP_HOST") || "localhost",
439 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
440 ssl: System.get_env("LDAP_SSL") == "true",
442 tls: System.get_env("LDAP_TLS") == "true",
444 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
445 uid: System.get_env("LDAP_UID") || "cn"
450 oauth_consumer_strategies = String.split(System.get_env("OAUTH_CONSUMER_STRATEGIES") || "")
452 ueberauth_providers =
453 for strategy <- oauth_consumer_strategies do
454 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
455 strategy_module = String.to_atom(strategy_module_name)
456 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
462 providers: ueberauth_providers
464 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
466 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail
468 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
470 config :pleroma, Pleroma.ScheduledActivity,
471 daily_user_limit: 25,
472 total_user_limit: 300,
475 config :pleroma, :email_notifications,
478 schedule: "0 0 * * 0",
480 inactivity_threshold: 7
483 config :pleroma, :oauth2,
484 token_expires_in: 600,
485 issue_new_refresh_token: true
487 # Import environment specific config. This must remain at the bottom
488 # of this file so it overrides the configuration defined above.
489 import_config "#{Mix.env()}.exs"