X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Fconfig.exs;h=b75a370f12f0633fdac8a67529121b985d9adacf;hb=4429c1b7dae9007299c46eab8bd60573b9ff1bdb;hp=946ba9adf1d6062f1da88660835c4d20e32b94ae;hpb=1040caf096347b638b9fda5b23fcccde87b32ede;p=akkoma diff --git a/config/config.exs b/config/config.exs index 946ba9adf..b75a370f1 100644 --- a/config/config.exs +++ b/config/config.exs @@ -212,6 +212,11 @@ config :pleroma, :instance, registrations_open: true, federating: true, federation_reachability_timeout_days: 7, + federation_publisher_modules: [ + Pleroma.Web.ActivityPub.Publisher, + Pleroma.Web.Websub, + Pleroma.Web.Salmon + ], allow_relay: true, rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy, public: true, @@ -232,8 +237,9 @@ config :pleroma, :instance, welcome_message: nil, max_report_comment_size: 1000, safe_dm_mentions: false, - healthcheck: false, - repo_batch_size: 500 + healthcheck: false + +config :pleroma, :app_account_creation, enabled: false, max_requests: 5, interval: 1800 config :pleroma, :markup, # XXX - unfortunately, inline images must be enabled by default right now, because @@ -418,7 +424,8 @@ config :pleroma_job_queue, :queues, mailer: 10, transmogrifier: 20, scheduled_activities: 10, - background: 5 + background: 5, + user: 10 config :pleroma, :fetch_initial_posts, enabled: false, @@ -477,6 +484,9 @@ config :pleroma, :oauth2, token_expires_in: 600, issue_new_refresh_token: true +config :http_signatures, + adapter: Pleroma.Signature + # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. import_config "#{Mix.env()}.exs"