proxy-loadbalancer/proxy-skeleton/app/config.py.example

26 lines
681 B
Plaintext
Raw Normal View History

2024-01-14 15:19:03 -07:00
# The address of the service used by the IP address of each proxy.
2024-01-14 14:35:42 -07:00
IP_CHECKER = 'http://[your IP or domain name]:5000'
2024-01-14 15:19:03 -07:00
# How many threads to use when checking proxy health.
2024-01-14 14:35:42 -07:00
MAX_PROXY_CHECKERS = 50
PROXY_POOL = [
"127.0.0.1:3128",
"[other server]:3128",
]
2024-01-14 15:19:03 -07:00
# Your login for SmartProxy. Ignore if you aren't using the service.
SMARTPROXY_USER = 'example'
SMARTPROXY_PASS = 'password'
# Some domains just don't work through SmartProxy.
BYPASS_SMARTPROXY_DOMAINS = [
'files.catbox.moe'
]
2024-01-14 15:19:03 -07:00
# The domains that SmartProxy gives you to connect to their service. Leave the array empty to disable this feature.
2024-01-14 14:35:42 -07:00
SMARTPROXY_POOL = [
# "dc.smartproxy.com:10001",
# ...
]