This is a minimal Docker-based Squid proxy configuration that:
- Accepts traffic from any source IP
- Disables all caching
- Exposes port 3128
⚠️ Warning: This proxy is open to all IP addresses and has no authentication or restrictions. Do not expose this to the public internet without securing it first.
docker build -t squid-proxy .docker run -d --name squid -p 3128:3128 squid-proxyAll configuration is in squid.conf. Cache is disabled and all traffic is allowed for testing purposes.