Config: Deactivate client api by default

This commit is contained in:
Lain Soykaf 2025-03-01 15:49:01 +04:00
parent 4604f2944e
commit d6a136f823
2 changed files with 5 additions and 2 deletions

View file

@ -360,7 +360,7 @@ config :pleroma, :activitypub,
note_replies_output_limit: 5,
sign_object_fetches: true,
authorized_fetch_mode: false,
client_api_enabled: true
client_api_enabled: false
config :pleroma, :streamer,
workers: 3,

View file

@ -38,7 +38,10 @@ config :pleroma, :instance,
external_user_synchronization: false,
static_dir: "test/instance_static/"
config :pleroma, :activitypub, sign_object_fetches: false, follow_handshake_timeout: 0
config :pleroma, :activitypub,
sign_object_fetches: false,
follow_handshake_timeout: 0,
client_api_enabled: true
# Configure your database
config :pleroma, Pleroma.Repo,