feat(parsers): sync RU proxies from proxy-tools
This commit is contained in:
@@ -200,6 +200,16 @@ FNS_LOCK_TTL_SECONDS = 3600
|
||||
PARSER_PROXIES = [
|
||||
item.strip() for item in os.getenv("PARSER_PROXIES", "").split(",") if item.strip()
|
||||
]
|
||||
PROXY_TOOLS_API_KEY = os.getenv("PROXY_TOOLS_API_KEY", "").strip()
|
||||
PROXY_TOOLS_API_URL = os.getenv(
|
||||
"PROXY_TOOLS_API_URL", "https://proxy-tools.com/api/v1/proxies"
|
||||
).strip()
|
||||
PROXY_TOOLS_TIMEOUT_SECONDS = int(os.getenv("PROXY_TOOLS_TIMEOUT_SECONDS", "30"))
|
||||
PROXY_TOOLS_LIMIT = int(os.getenv("PROXY_TOOLS_LIMIT", "100"))
|
||||
PROXY_TOOLS_MAX_PAGES = int(os.getenv("PROXY_TOOLS_MAX_PAGES", "3"))
|
||||
PROXY_TOOLS_SYNC_INTERVAL_SECONDS = int(
|
||||
os.getenv("PROXY_TOOLS_SYNC_INTERVAL_SECONDS", "3600")
|
||||
)
|
||||
BACKUP_ENCRYPTION_KEY = os.getenv("BACKUP_ENCRYPTION_KEY", "")
|
||||
BACKUP_KEY_ID = os.getenv("BACKUP_KEY_ID", "default")
|
||||
BACKUP_EXPORT_DIRECTORY = os.getenv(
|
||||
|
||||
Reference in New Issue
Block a user