Update proxy blocking

This commit is contained in:
DariusIII
2026-07-02 13:47:12 +02:00
parent ffff25307b
commit 09ad515969
4 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -307,7 +307,7 @@ class BlockAbusiveServicesTest extends TestCase
config()->set('nntmux.proxy_detection_window_seconds', 3600);
config()->set('nntmux.proxy_detection_ratio_min', 0.8);
config()->set('nntmux.proxy_detection_min_searches', 20);
config()->set('nntmux.proxy_detection_indexer_referer_patterns', 'hydra,prowlarr,jackett');
config()->set('nntmux.proxy_detection_indexer_referer_patterns', 'hydra,prowlarr');
$this->app->instance(
CacheRepositoryContract::class,
+1 -1
View File
@@ -303,7 +303,7 @@ class IndexerProxyDetectorTest extends TestCase
config()->set('nntmux.proxy_detection_min_searches', $overrides['min_searches'] ?? 20);
config()->set(
'nntmux.proxy_detection_indexer_referer_patterns',
$overrides['referer_patterns'] ?? 'hydra,prowlarr,jackett',
$overrides['referer_patterns'] ?? 'hydra,prowlarr',
);
}