Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 619 Bytes

File metadata and controls

27 lines (17 loc) · 619 Bytes

Squid Proxy (No Cache, Open Access)

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.

Usage

Build

docker build -t squid-proxy .

Run

docker run -d --name squid -p 3128:3128 squid-proxy

Configuration

All configuration is in squid.conf. Cache is disabled and all traffic is allowed for testing purposes.