Closed GibMeMyPacket closed 1 year ago
Hello, I am using this docker image but i cannot get socks5 proxy usable.
I have the following in my docker-compose:
ports: - 8008:8008 - 8080:8080
But using curl --proxy socks5://127.0.0.1:8080 https://www.cloudflare.com/cdn-cgi/trace i get curl: (97) Unable to receive initial SOCKS5 response.
curl --proxy socks5://127.0.0.1:8080 https://www.cloudflare.com/cdn-cgi/trace
curl: (97) Unable to receive initial SOCKS5 response.
The solution is to use bind to 0.0.0.0 instead of 127.0.0.1 in wireproxy.conf
0.0.0.0
127.0.0.1
wireproxy.conf
Fix it please, thanks a lot.
Hello, I am using this docker image but i cannot get socks5 proxy usable.
I have the following in my docker-compose:
But using
curl --proxy socks5://127.0.0.1:8080 https://www.cloudflare.com/cdn-cgi/trace
i getcurl: (97) Unable to receive initial SOCKS5 response.