Setup server
Install squid
apt update
apt install squid squid-commonSetup squid
Allow all (not recommended for production)
Edit config file:
nano /etc/squid3/squid.confFind the following line:
http_access deny allBEFORE this line add:
acl all src 0.0.0.0/0
http_access allow allBasic auth
Edit config file:
nano /etc/squid3/squid.confFind the following line:
BEFORE this line add:
Add user
Run:
Input your password twice.
Setup client
Last updated