From 13e5aed48225a4af0df4240463cd05f08cde6767 Mon Sep 17 00:00:00 2001 From: MCD Date: Thu, 25 Apr 2024 09:28:21 +0200 Subject: [PATCH 1/2] Update README.md curl test command that returns the IP address of the proxy. response format {"ip":"X.X.X.X"}* Connection #0 to host 127.0.0.1 left intact --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5f8030c..98a3845 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,9 @@ docker run -d -p 5566:5566 -p 4444:4444 --env tors=25 mattes/rotating-proxy # test with ... curl --proxy 127.0.0.1:5566 https://api.my-ip.io/ip +or +curl -vx socks5://127.0.0.1:9050 https://api.ipify.org?format=json +response: {"ip":"X.X.X.X"}* Connection #0 to host 127.0.0.1 left intact # monitor http://127.0.0.1:4444/haproxy?stats From b1a31034907b6c8964ccc03ec80ad7c287e91fb0 Mon Sep 17 00:00:00 2001 From: MCD Date: Thu, 25 Apr 2024 09:50:09 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98a3845..40deeb2 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ docker run -d -p 5566:5566 -p 4444:4444 --env tors=25 mattes/rotating-proxy # test with ... curl --proxy 127.0.0.1:5566 https://api.my-ip.io/ip or -curl -vx socks5://127.0.0.1:9050 https://api.ipify.org?format=json +curl -vx socks5://127.0.0.1:5566 https://api.ipify.org?format=json response: {"ip":"X.X.X.X"}* Connection #0 to host 127.0.0.1 left intact # monitor