-
Notifications
You must be signed in to change notification settings - Fork 27
🥷 Proxy
Renan Altendorf edited this page May 26, 2025
·
1 revision
Set the PROXY_LIST
environment variable with your list of proxies. Two formats are supported:
http://USER:PASSWORD@HOST:PORT
IP:PORT:USER:PASSWORD
You can include multiple proxies by separating them with commas or newlines.
Run the proxy cache updater script to store the proxy list in the cache:
php bin/proxy
You can enable the proxy rule in two ways:
To enable proxies for all domains, edit app/data/global_rules.php
and set:
'proxy' => true,
To enable proxies only for specific domains, edit app/data/domain_rules.php
and add the rule to the desired domain:
'example.com' => [
'proxy' => true,
// other rules...
],