-
Notifications
You must be signed in to change notification settings - Fork 0
Tests
GradedJestRisk edited this page Jul 10, 2025
·
3 revisions
To use when you configured a proxy
curl https://httpbin.org/get
curl https://httpbin.org/get --header $AUTHORIZATION_HEADERStart a minimalist server
cd /tmp
mkdir test-webserver && test-webserver
echo "fooooo" > index.html
python3 -m http.server 8081Try to reach it on your browser
Try to reach it on your terminal
curl http://localhost:8081You should get
fooooo
If you get Squid did not receive any data for this request., some proxy may be intercepting your request
Try disabling the proxy
curl http://localhost:8081--noproxy '*'