(01)Install Squid Proxy
Linux
1sudo apt-get install -y squid2sudo systemctl enable squid && sudo systemctl start squidCaching forward and reverse proxy server
What is this?
Squid caches web content and can act as a forward or reverse proxy.
Where to create or edit the main configuration — paths below match the setup steps.
/etc/squid/squid.confLocation: Squid proxy server
ACLs, cache, and forward rules
Step 01
1sudo apt-get install -y squid2sudo systemctl enable squid && sudo systemctl start squidStep 02
1sudo nano /etc/squid/squid.conf2# Set http_port 31283sudo systemctl restart squidStep 03
1curl -x http://localhost:3128 http://example.com