titanium-web-proxy
titanium-web-proxy copied to clipboard
Whether to support multi-level proxy
Hello, the existing socks5 proxy server, would you like to inquire whether it supports the following network architecture?
like this :
pc browser -> Titanium.Web.Proxy -> socks5 server -> internet
I think socks5 proxy is no supported by TWP, yet. See #102
But it should work with normal HTTP(S) proxy: pc browser -> Titanium.Web.Proxy -> upstream proxy server -> internet
If the machine running TWP is connected to a socks proxy then yes you can connect to TWP then have TWP use the local socks connection. As pointed out TWP does not support socks directly so you would need the socks client setup on the TWP machine first.
socks4/5 support added in the latest beta
ooohhhhh really any special config needed? example?
proxyServer.UpStreamHttpProxy = new ExternalProxy("46.63.0.17", 4145) { ProxyType = ExternalProxyType.Socks4 }; proxyServer.UpStreamHttpsProxy = new ExternalProxy("46.63.0.17", 4145) { ProxyType = ExternalProxyType.Socks4 };
Socks5 is also supproted.
This is only the upstream proxy, as @xLabel wrote... I'm also adding a SocksEndpoint....
Update: SocksEndpoint added
:+1: excellent @honfika