fix(parsers): support proxy fallback from env for external sources
This commit is contained in:
@@ -197,7 +197,9 @@ WSGI_APPLICATION = "core.wsgi.application"
|
||||
|
||||
ZAKUPKI_TOKEN = os.getenv("ZAKUPKI_TOKEN", "")
|
||||
FNS_LOCK_TTL_SECONDS = 3600
|
||||
PARSER_PROXIES = []
|
||||
PARSER_PROXIES = [
|
||||
item.strip() for item in os.getenv("PARSER_PROXIES", "").split(",") if item.strip()
|
||||
]
|
||||
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