-
-
Notifications
You must be signed in to change notification settings - Fork 476
Proxy Configuration
Jari Sundell edited this page Jun 30, 2026
·
1 revision
- network.proxy.global: Returns current global proxy.
- network.proxy.http: Returns current HTTP proxy.
- network.proxy.global.set = "url": Sets global proxy.
- network.proxy.http.set = "url": Sets HTTP proxy (overrides global).
- http://host:port
- socks5://user:pass@host:port
- socks5h://user:pass@host:port
UDP (trackers/dht) and listening ports are disabled.
Supports all native libcurl schemas.
# Global authenticated SOCKS5h (Closes DHT & Listening Ports)
network.proxy.global.set = "socks5h://user:pass@127.0.0.1:1080"
# Split routing (SOCKS5 global + HTTP/HTTPS tracker override)
network.proxy.global.set = "socks5://127.0.0.1:1080"
network.proxy.http.set = "http://example.com"