1
0
Fork 0

Update pixelfed config, disable cloud ip bans by default

This commit is contained in:
Daniel Supernault 2023-05-02 21:01:59 -06:00
parent 79b6a17e44
commit c1d1272105
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 4 additions and 4 deletions

View File

@ -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),
],
],