Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

712 lines
18KB

  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. # General application configuration
  46. config :pleroma, ecto_repos: [Pleroma.Repo]
  47. config :pleroma, Pleroma.Repo,
  48. types: Pleroma.PostgresTypes,
  49. telemetry_event: [Pleroma.Repo.Instrumenter],
  50. migration_lock: nil
  51. config :pleroma, Pleroma.Captcha,
  52. enabled: true,
  53. seconds_valid: 300,
  54. method: Pleroma.Captcha.Native
  55. config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
  56. # Upload configuration
  57. config :pleroma, Pleroma.Upload,
  58. uploader: Pleroma.Uploaders.Local,
  59. filters: [Pleroma.Upload.Filter.Dedupe],
  60. link_name: false,
  61. proxy_remote: false,
  62. proxy_opts: [
  63. redirect_on_failure: false,
  64. max_body_length: 25 * 1_048_576,
  65. http: [
  66. follow_redirect: true,
  67. pool: :upload
  68. ]
  69. ],
  70. filename_display_max_length: 30
  71. config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
  72. config :pleroma, Pleroma.Uploaders.S3,
  73. bucket: nil,
  74. streaming_enabled: true,
  75. public_endpoint: "https://s3.amazonaws.com"
  76. config :pleroma, :emoji,
  77. shortcode_globs: ["/emoji/custom/**/*.png"],
  78. pack_extensions: [".png", ".gif"],
  79. groups: [
  80. Custom: ["/emoji/*.png", "/emoji/**/*.png"]
  81. ],
  82. default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
  83. shared_pack_cache_seconds_per_file: 60
  84. config :pleroma, :uri_schemes,
  85. valid_schemes: [
  86. "https",
  87. "http",
  88. "dat",
  89. "dweb",
  90. "gopher",
  91. "hyper",
  92. "ipfs",
  93. "ipns",
  94. "irc",
  95. "ircs",
  96. "magnet",
  97. "mailto",
  98. "mumble",
  99. "ssb",
  100. "xmpp"
  101. ]
  102. websocket_config = [
  103. path: "/websocket",
  104. serializer: [
  105. {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
  106. {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
  107. ],
  108. timeout: 60_000,
  109. transport_log: false,
  110. compress: false
  111. ]
  112. # Configures the endpoint
  113. config :pleroma, Pleroma.Web.Endpoint,
  114. instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
  115. url: [host: "localhost"],
  116. http: [
  117. ip: {127, 0, 0, 1},
  118. dispatch: [
  119. {:_,
  120. [
  121. {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
  122. {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
  123. {Phoenix.Transports.WebSocket,
  124. {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
  125. {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
  126. ]}
  127. ]
  128. ],
  129. protocol: "https",
  130. secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
  131. signing_salt: "CqaoopA2",
  132. render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
  133. pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
  134. secure_cookie_flag: true,
  135. extra_cookie_attrs: [
  136. "SameSite=Lax"
  137. ]
  138. # Configures Elixir's Logger
  139. config :logger, :console,
  140. level: :debug,
  141. format: "\n$time $metadata[$level] $message\n",
  142. metadata: [:request_id]
  143. config :logger, :ex_syslogger,
  144. level: :debug,
  145. ident: "pleroma",
  146. format: "$metadata[$level] $message",
  147. metadata: [:request_id]
  148. config :quack,
  149. level: :warn,
  150. meta: [:all],
  151. webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
  152. config :mime, :types, %{
  153. "application/xml" => ["xml"],
  154. "application/xrd+xml" => ["xrd+xml"],
  155. "application/jrd+json" => ["jrd+json"],
  156. "application/activity+json" => ["activity+json"],
  157. "application/ld+json" => ["activity+json"]
  158. }
  159. config :tesla, adapter: Tesla.Adapter.Hackney
  160. # Configures http settings, upstream proxy etc.
  161. config :pleroma, :http,
  162. proxy_url: nil,
  163. send_user_agent: true,
  164. user_agent: :default,
  165. adapter: []
  166. config :pleroma, :instance,
  167. name: "Pleroma",
  168. email: "example@example.com",
  169. notify_email: "noreply@example.com",
  170. description: "Pleroma: An efficient and flexible fediverse server",
  171. background_image: "/images/city.jpg",
  172. instance_thumbnail: "/instance/thumbnail.jpeg",
  173. limit: 5_000,
  174. description_limit: 5_000,
  175. chat_limit: 5_000,
  176. remote_limit: 100_000,
  177. upload_limit: 16_000_000,
  178. avatar_upload_limit: 2_000_000,
  179. background_upload_limit: 4_000_000,
  180. banner_upload_limit: 4_000_000,
  181. poll_limits: %{
  182. max_options: 20,
  183. max_option_chars: 200,
  184. min_expiration: 0,
  185. max_expiration: 365 * 24 * 60 * 60
  186. },
  187. registrations_open: true,
  188. invites_enabled: false,
  189. account_activation_required: false,
  190. federating: true,
  191. federation_incoming_replies_max_depth: 100,
  192. federation_reachability_timeout_days: 7,
  193. federation_publisher_modules: [
  194. Pleroma.Web.ActivityPub.Publisher
  195. ],
  196. allow_relay: true,
  197. public: true,
  198. quarantined_instances: [],
  199. managed_config: true,
  200. static_dir: "instance/static/",
  201. allowed_post_formats: [
  202. "text/plain",
  203. "text/html",
  204. "text/markdown",
  205. "text/bbcode"
  206. ],
  207. autofollowed_nicknames: [],
  208. max_pinned_statuses: 1,
  209. attachment_links: false,
  210. welcome_user_nickname: nil,
  211. welcome_message: nil,
  212. max_report_comment_size: 1000,
  213. safe_dm_mentions: false,
  214. healthcheck: false,
  215. remote_post_retention_days: 90,
  216. skip_thread_containment: true,
  217. limit_to_local_content: :unauthenticated,
  218. user_bio_length: 5000,
  219. user_name_length: 100,
  220. max_account_fields: 10,
  221. max_remote_account_fields: 20,
  222. account_field_name_length: 512,
  223. account_field_value_length: 2048,
  224. external_user_synchronization: true,
  225. extended_nickname_format: true,
  226. cleanup_attachments: false,
  227. multi_factor_authentication: [
  228. totp: [
  229. # digits 6 or 8
  230. digits: 6,
  231. period: 30
  232. ],
  233. backup_codes: [
  234. number: 5,
  235. length: 16
  236. ]
  237. ]
  238. config :pleroma, :feed,
  239. post_title: %{
  240. max_length: 100,
  241. omission: "..."
  242. }
  243. config :pleroma, :markup,
  244. # XXX - unfortunately, inline images must be enabled by default right now, because
  245. # of custom emoji. Issue #275 discusses defanging that somehow.
  246. allow_inline_images: true,
  247. allow_headings: false,
  248. allow_tables: false,
  249. allow_fonts: false,
  250. scrub_policy: [
  251. Pleroma.HTML.Scrubber.Default,
  252. Pleroma.HTML.Transform.MediaProxy
  253. ]
  254. config :pleroma, :frontend_configurations,
  255. pleroma_fe: %{
  256. alwaysShowSubjectInput: true,
  257. background: "/images/city.jpg",
  258. collapseMessageWithSubject: false,
  259. disableChat: false,
  260. greentext: false,
  261. hideFilteredStatuses: false,
  262. hideMutedPosts: false,
  263. hidePostStats: false,
  264. hideSitename: false,
  265. hideUserStats: false,
  266. loginMethod: "password",
  267. logo: "/static/logo.png",
  268. logoMargin: ".1em",
  269. logoMask: true,
  270. minimalScopesMode: false,
  271. noAttachmentLinks: false,
  272. nsfwCensorImage: "",
  273. postContentType: "text/plain",
  274. redirectRootLogin: "/main/friends",
  275. redirectRootNoLogin: "/main/all",
  276. scopeCopy: true,
  277. sidebarRight: false,
  278. showFeaturesPanel: true,
  279. showInstanceSpecificPanel: false,
  280. subjectLineBehavior: "email",
  281. theme: "pleroma-dark",
  282. webPushNotifications: false
  283. },
  284. masto_fe: %{
  285. showInstanceSpecificPanel: true
  286. }
  287. config :pleroma, :assets,
  288. mascots: [
  289. pleroma_fox_tan: %{
  290. url: "/images/pleroma-fox-tan-smol.png",
  291. mime_type: "image/png"
  292. },
  293. pleroma_fox_tan_shy: %{
  294. url: "/images/pleroma-fox-tan-shy.png",
  295. mime_type: "image/png"
  296. }
  297. ],
  298. default_mascot: :pleroma_fox_tan
  299. config :pleroma, :manifest,
  300. icons: [
  301. %{
  302. src: "/static/logo.png",
  303. type: "image/png"
  304. }
  305. ],
  306. theme_color: "#282c37",
  307. background_color: "#191b22"
  308. config :pleroma, :activitypub,
  309. unfollow_blocked: true,
  310. outgoing_blocks: true,
  311. follow_handshake_timeout: 500,
  312. note_replies_output_limit: 5,
  313. sign_object_fetches: true,
  314. authorized_fetch_mode: false
  315. config :pleroma, :streamer,
  316. workers: 3,
  317. overflow_workers: 2
  318. config :pleroma, :user, deny_follow_blocked: true
  319. config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
  320. config :pleroma, :mrf_rejectnonpublic,
  321. allow_followersonly: false,
  322. allow_direct: false
  323. config :pleroma, :mrf_hellthread,
  324. delist_threshold: 10,
  325. reject_threshold: 20
  326. config :pleroma, :mrf_simple,
  327. media_removal: [],
  328. media_nsfw: [],
  329. federated_timeline_removal: [],
  330. report_removal: [],
  331. reject: [],
  332. accept: [],
  333. avatar_removal: [],
  334. banner_removal: [],
  335. reject_deletes: []
  336. config :pleroma, :mrf_keyword,
  337. reject: [],
  338. federated_timeline_removal: [],
  339. replace: []
  340. config :pleroma, :mrf_subchain, match_actor: %{}
  341. config :pleroma, :mrf_activity_expiration, days: 365
  342. config :pleroma, :mrf_vocabulary,
  343. accept: [],
  344. reject: []
  345. config :pleroma, :mrf_object_age,
  346. threshold: 172_800,
  347. actions: [:delist, :strip_followers]
  348. config :pleroma, :rich_media,
  349. enabled: true,
  350. ignore_hosts: [],
  351. ignore_tld: ["local", "localdomain", "lan"],
  352. parsers: [
  353. Pleroma.Web.RichMedia.Parsers.TwitterCard,
  354. Pleroma.Web.RichMedia.Parsers.OEmbed
  355. ],
  356. ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
  357. config :pleroma, :media_proxy,
  358. enabled: false,
  359. invalidation: [
  360. enabled: false,
  361. provider: Pleroma.Web.MediaProxy.Invalidation.Script
  362. ],
  363. proxy_opts: [
  364. redirect_on_failure: false,
  365. max_body_length: 25 * 1_048_576,
  366. http: [
  367. follow_redirect: true,
  368. pool: :media
  369. ]
  370. ],
  371. whitelist: []
  372. config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
  373. method: :purge,
  374. headers: [],
  375. options: []
  376. config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
  377. config :pleroma, :chat, enabled: true
  378. config :phoenix, :format_encoders, json: Jason
  379. config :phoenix, :json_library, Jason
  380. config :phoenix, :filter_parameters, ["password", "confirm"]
  381. config :pleroma, :gopher,
  382. enabled: false,
  383. ip: {0, 0, 0, 0},
  384. port: 9999
  385. config :pleroma, Pleroma.Web.Metadata,
  386. providers: [
  387. Pleroma.Web.Metadata.Providers.OpenGraph,
  388. Pleroma.Web.Metadata.Providers.TwitterCard,
  389. Pleroma.Web.Metadata.Providers.RelMe,
  390. Pleroma.Web.Metadata.Providers.Feed
  391. ],
  392. unfurl_nsfw: false
  393. config :pleroma, Pleroma.Web.Preload,
  394. providers: [
  395. Pleroma.Web.Preload.Providers.Instance
  396. ]
  397. config :pleroma, :http_security,
  398. enabled: true,
  399. sts: false,
  400. sts_max_age: 31_536_000,
  401. ct_max_age: 2_592_000,
  402. referrer_policy: "same-origin"
  403. config :cors_plug,
  404. max_age: 86_400,
  405. methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
  406. expose: [
  407. "Link",
  408. "X-RateLimit-Reset",
  409. "X-RateLimit-Limit",
  410. "X-RateLimit-Remaining",
  411. "X-Request-Id",
  412. "Idempotency-Key"
  413. ],
  414. credentials: true,
  415. headers: ["Authorization", "Content-Type", "Idempotency-Key"]
  416. config :pleroma, Pleroma.User,
  417. restricted_nicknames: [
  418. ".well-known",
  419. "~",
  420. "about",
  421. "activities",
  422. "api",
  423. "auth",
  424. "check_password",
  425. "dev",
  426. "friend-requests",
  427. "inbox",
  428. "internal",
  429. "main",
  430. "media",
  431. "nodeinfo",
  432. "notice",
  433. "oauth",
  434. "objects",
  435. "ostatus_subscribe",
  436. "pleroma",
  437. "proxy",
  438. "push",
  439. "registration",
  440. "relay",
  441. "settings",
  442. "status",
  443. "tag",
  444. "user-search",
  445. "user_exists",
  446. "users",
  447. "web"
  448. ]
  449. config :pleroma, Oban,
  450. repo: Pleroma.Repo,
  451. verbose: false,
  452. prune: {:maxlen, 1500},
  453. queues: [
  454. activity_expiration: 10,
  455. federator_incoming: 50,
  456. federator_outgoing: 50,
  457. web_push: 50,
  458. mailer: 10,
  459. transmogrifier: 20,
  460. scheduled_activities: 10,
  461. background: 5,
  462. remote_fetcher: 2,
  463. attachments_cleanup: 5,
  464. new_users_digest: 1
  465. ],
  466. crontab: [
  467. {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
  468. {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
  469. {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
  470. {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
  471. {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
  472. ]
  473. config :pleroma, :workers,
  474. retries: [
  475. federator_incoming: 5,
  476. federator_outgoing: 5
  477. ]
  478. config :auto_linker,
  479. opts: [
  480. extra: true,
  481. # TODO: Set to :no_scheme when it works properly
  482. validate_tld: true,
  483. class: false,
  484. strip_prefix: false,
  485. new_window: false,
  486. rel: "ugc"
  487. ]
  488. config :pleroma, :ldap,
  489. enabled: System.get_env("LDAP_ENABLED") == "true",
  490. host: System.get_env("LDAP_HOST") || "localhost",
  491. port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
  492. ssl: System.get_env("LDAP_SSL") == "true",
  493. sslopts: [],
  494. tls: System.get_env("LDAP_TLS") == "true",
  495. tlsopts: [],
  496. base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
  497. uid: System.get_env("LDAP_UID") || "cn"
  498. config :esshd,
  499. enabled: false
  500. oauth_consumer_strategies =
  501. System.get_env("OAUTH_CONSUMER_STRATEGIES")
  502. |> to_string()
  503. |> String.split()
  504. |> Enum.map(&hd(String.split(&1, ":")))
  505. ueberauth_providers =
  506. for strategy <- oauth_consumer_strategies do
  507. strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
  508. strategy_module = String.to_atom(strategy_module_name)
  509. {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
  510. end
  511. config :ueberauth,
  512. Ueberauth,
  513. base_path: "/oauth",
  514. providers: ueberauth_providers
  515. config :pleroma,
  516. :auth,
  517. enforce_oauth_admin_scope_usage: true,
  518. oauth_consumer_strategies: oauth_consumer_strategies
  519. config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
  520. config :pleroma, Pleroma.Emails.UserEmail,
  521. logo: nil,
  522. styling: %{
  523. link_color: "#d8a070",
  524. background_color: "#2C3645",
  525. content_background_color: "#1B2635",
  526. header_color: "#d8a070",
  527. text_color: "#b9b9ba",
  528. text_muted_color: "#b9b9ba"
  529. }
  530. config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
  531. config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
  532. config :pleroma, Pleroma.ScheduledActivity,
  533. daily_user_limit: 25,
  534. total_user_limit: 300,
  535. enabled: true
  536. config :pleroma, :email_notifications,
  537. digest: %{
  538. active: false,
  539. interval: 7,
  540. inactivity_threshold: 7
  541. }
  542. config :pleroma, :oauth2,
  543. token_expires_in: 600,
  544. issue_new_refresh_token: true,
  545. clean_expired_tokens: false
  546. config :pleroma, :database, rum_enabled: false
  547. config :pleroma, :env, Mix.env()
  548. config :http_signatures,
  549. adapter: Pleroma.Signature
  550. config :pleroma, :rate_limit,
  551. authentication: {60_000, 15},
  552. timeline: {500, 3},
  553. search: [{1000, 10}, {1000, 30}],
  554. app_account_creation: {1_800_000, 25},
  555. relations_actions: {10_000, 10},
  556. relation_id_action: {60_000, 2},
  557. statuses_actions: {10_000, 15},
  558. status_id_action: {60_000, 3},
  559. password_reset: {1_800_000, 5},
  560. account_confirmation_resend: {8_640_000, 5},
  561. ap_routes: {60_000, 15}
  562. config :pleroma, Pleroma.ActivityExpiration, enabled: true
  563. config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
  564. config :pleroma, :static_fe, enabled: false
  565. config :pleroma, :web_cache_ttl,
  566. activity_pub: nil,
  567. activity_pub_question: 30_000
  568. config :pleroma, :modules, runtime_dir: "instance/modules"
  569. config :pleroma, configurable_from_database: false
  570. config :pleroma, Pleroma.Repo,
  571. parameters: [gin_fuzzy_search_limit: "500"],
  572. prepare: :unnamed
  573. config :pleroma, :connections_pool,
  574. checkin_timeout: 250,
  575. max_connections: 250,
  576. retry: 1,
  577. retry_timeout: 1000,
  578. await_up_timeout: 5_000
  579. config :pleroma, :pools,
  580. federation: [
  581. size: 50,
  582. max_overflow: 10,
  583. timeout: 150_000
  584. ],
  585. media: [
  586. size: 50,
  587. max_overflow: 10,
  588. timeout: 150_000
  589. ],
  590. upload: [
  591. size: 25,
  592. max_overflow: 5,
  593. timeout: 300_000
  594. ],
  595. default: [
  596. size: 10,
  597. max_overflow: 2,
  598. timeout: 10_000
  599. ]
  600. config :pleroma, :hackney_pools,
  601. federation: [
  602. max_connections: 50,
  603. timeout: 150_000
  604. ],
  605. media: [
  606. max_connections: 50,
  607. timeout: 150_000
  608. ],
  609. upload: [
  610. max_connections: 25,
  611. timeout: 300_000
  612. ]
  613. config :pleroma, :restrict_unauthenticated,
  614. timelines: %{local: false, federated: false},
  615. profiles: %{local: false, remote: false},
  616. activities: %{local: false, remote: false}
  617. config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
  618. config :pleroma, :mrf,
  619. policies: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
  620. transparency: true,
  621. transparency_exclusions: []
  622. config :tzdata, :http_client, Pleroma.HTTP.Tzdata
  623. config :ex_aws, http_client: Pleroma.HTTP.ExAws
  624. # Import environment specific config. This must remain at the bottom
  625. # of this file so it overrides the configuration defined above.
  626. import_config "#{Mix.env()}.exs"