Proxy Server
How to isntall & do simple configuration of Squid’s Proxy server on linux
Installing squid
sudo apt update -y && sudo apt install squid
first we install the squid proxy application. and all of its dependencies.
Configuring the proxy server
the configuration file is located in /etc/squid/squid.conf we can edit it using nano
sudo nano /etc/squid/squid.conf
now we need to allow http, as the default configuration forbid it.
http_access allow all
change deny to allow.