Spaces:
Running
Running
File size: 709 Bytes
42f0287 6b6c879 42f0287 ba25076 42f0287 6b6c879 42f0287 ba25076 42f0287 2e9111a ba25076 42f0287 ba25076 42f0287 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
#!/bin/bash
set -e
echo "[UPDATER] Fetching proxy list..."
curl -fsSL https://raw.githubusercontent.com/mishableskineetudiant-stack/proxylistfiltered/main/proxies_elite.txt > proxies.txt
# Loop de mise à jour toutes les 5 minutes
(
while true; do
sleep 300
echo "[UPDATER] Updating proxy list..."
curl -fsSL https://raw.githubusercontent.com/mishableskineetudiant-stack/proxylistfiltered/main/proxies_elite.txt > proxies.txt
done
) &
echo "[MAIN] Starting rotating-mitmproxy..."
# Lancement proxy rotatif
python -m rotating_mitmproxy \
--proxy-list proxies.txt \
--port 3129 \
--strategy smart \
--web-port 8081 &
echo "[MAIN] Starting HF health server..."
python /app/health.py
|