mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-03-13 07:02:41 +00:00
Config: Deactivate client api by default
This commit is contained in:
parent
4604f2944e
commit
d6a136f823
2 changed files with 5 additions and 2 deletions
|
@ -360,7 +360,7 @@ config :pleroma, :activitypub,
|
||||||
note_replies_output_limit: 5,
|
note_replies_output_limit: 5,
|
||||||
sign_object_fetches: true,
|
sign_object_fetches: true,
|
||||||
authorized_fetch_mode: false,
|
authorized_fetch_mode: false,
|
||||||
client_api_enabled: true
|
client_api_enabled: false
|
||||||
|
|
||||||
config :pleroma, :streamer,
|
config :pleroma, :streamer,
|
||||||
workers: 3,
|
workers: 3,
|
||||||
|
|
|
@ -38,7 +38,10 @@ config :pleroma, :instance,
|
||||||
external_user_synchronization: false,
|
external_user_synchronization: false,
|
||||||
static_dir: "test/instance_static/"
|
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
|
# Configure your database
|
||||||
config :pleroma, Pleroma.Repo,
|
config :pleroma, Pleroma.Repo,
|
||||||
|
|
Loading…
Reference in a new issue