소스 검색

Update pixelfed config, disable cloud ip bans by default

Daniel Supernault 2 년 전
부모
커밋
c1d1272105
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      config/pixelfed.php

+ 4 - 4
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),
 		],
 	],