feat: Some quality of life improvements
This commit is contained in:
11
proxy/config.py
Normal file
11
proxy/config.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import os
|
||||
|
||||
TARGET_URL = os.getenv("TARGET_URL", "https://omegleweb.io/")
|
||||
TARGET_WS_URL = os.getenv(
|
||||
"TARGET_WS_URL", "wss://omegleweb.io:8443/socket.io/?EIO=4&transport=websocket"
|
||||
)
|
||||
LOCAL_HOST = os.getenv("LOCAL_HOST", "0.0.0.0")
|
||||
LOCAL_PORT = int(os.getenv("LOCAL_PORT", "8765"))
|
||||
HEADLESS = os.getenv("HEADLESS", "false").lower() in ("true", "1", "yes")
|
||||
CF_WAIT_TIME = int(os.getenv("CF_WAIT_TIME", "60"))
|
||||
SELENIUM_URL = os.getenv("SELENIUM_URL", "http://localhost:4444")
|
||||
Reference in New Issue
Block a user