Setup server

Install squid

apt update
apt install squid squid-common

Setup squid

Edit config file:

nano /etc/squid3/squid.conf

Find the following line:

http_access deny all

BEFORE this line add:

acl all src 0.0.0.0/0
http_access allow all

Basic auth

Edit config file:

nano /etc/squid3/squid.conf

Find the following line:

BEFORE this line add:

Add user

Run:

Input your password twice.

Setup client

Last updated