From c1d127210582a7bc5fca4f5f49c42aae40830ca5 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Tue, 2 May 2023 21:01:59 -0600 Subject: [PATCH] Update pixelfed config, disable cloud ip bans by default --- config/pixelfed.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/pixelfed.php b/config/pixelfed.php index e63d886f..a40dc2d5 100644 --- a/config/pixelfed.php +++ b/config/pixelfed.php @@ -261,10 +261,10 @@ return [ 'enabled' => env('PF_BOUNCER_ENABLED', false), 'cloud_ips' => [ - 'ban_logins' => env('PF_BOUNCER_BAN_CLOUD_LOGINS', true), - 'ban_signups' => env('PF_BOUNCER_BAN_CLOUD_SIGNUPS', true), - 'ban_api' => env('PF_BOUNCER_BAN_CLOUD_API', true), - 'ban_api_strict_mode' => env('PF_BOUNCER_BAN_CLOUD_API_STRICT_MODE', true), + 'ban_logins' => env('PF_BOUNCER_BAN_CLOUD_LOGINS', false), + 'ban_signups' => env('PF_BOUNCER_BAN_CLOUD_SIGNUPS', false), + 'ban_api' => env('PF_BOUNCER_BAN_CLOUD_API', false), + 'ban_api_strict_mode' => env('PF_BOUNCER_BAN_CLOUD_API_STRICT_MODE', false), ], ],