From a12b6454bb0a270732f9b55f8d4366c9add44136 Mon Sep 17 00:00:00 2001 From: Egor Kislitsyn Date: Mon, 16 Dec 2019 22:24:03 +0700 Subject: Add an option to require fetches to be signed --- config/config.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'config/config.exs') diff --git a/config/config.exs b/config/config.exs index 370ddd855..541fcc2d4 100644 --- a/config/config.exs +++ b/config/config.exs @@ -343,7 +343,8 @@ config :pleroma, :activitypub, unfollow_blocked: true, outgoing_blocks: true, follow_handshake_timeout: 500, - sign_object_fetches: true + sign_object_fetches: true, + authorized_fetch_mode: false config :pleroma, :streamer, workers: 3, -- cgit v1.2.3 From b6bb73f43e31cc252dd3c64a85edd9650ebbf87c Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Thu, 20 Feb 2020 15:34:10 -0600 Subject: Apply database session parameter to improve GIN full text search --- config/config.exs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config/config.exs') diff --git a/config/config.exs b/config/config.exs index 0eff26653..641b2c867 100644 --- a/config/config.exs +++ b/config/config.exs @@ -617,6 +617,8 @@ config :pleroma, :modules, runtime_dir: "instance/modules" config :pleroma, configurable_from_database: false +config :pleroma, Pleroma.Repo, parameters: [gin_fuzzy_search_limit: "500"] + # 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" -- cgit v1.2.3