There is a point to this story, but it has temporarily escaped my mind...
Contact Me MyFaceBook MyLinkedIn MyGitHub MyTwitter

Install a Web Content Filtering Proxy Server

As a parent, I'm alway concerned about what my children will have access to on the Internet. As a consultant, I work with many clients that are concerned about what their employees can have access to. I use these steps in both situations to set up a content filtering proxy server. I usualy use a didicated server for this purpose and run it on a VM. I'll then block the ports on the firewall and manually configure proxy settings. I've also been asked a few times to set up a “transparent” proxy. Doing that depends on the firewall software and/or network configuration so I don't explain that in this article.

Installation

You could use squid for the proxy server, but I think that most of the time it is too complex for most environments. I also find that I don't need all of the features of squid, such as caching and ACLs. Privoyx is easier to configure and has some privacy and ad blocking capabilities as well.

sudo apt-get -y install privoxy dansguardian

Configuration

To allow all computers on the local network to use the proxy server:

sudo sed -i 's/listen-address  localhost:8118/listen-address  127.0.0.1:8118/g' /etc/privoxy/config 
sudo sed -i 's/UNCONFIGURED - Please remove this line after configuration//g' /etc/dansguardian/dansguardian.conf
sudo sed -i 's/proxyport = 3128/proxyport = 8118/g' /etc/dansguardian/dansguardian.conf
sudo sed -i 's/hexdecodecontent = off/hexdecodecontent = on/g' /etc/dansguardian/dansguardian.conf
sudo sed -i "s/#contentscanner = '\/etc\/dansguardian\/contentscanners\/clamav.conf'/contentscanner = '\/etc\/dansguardian\/contentscanners\/clamav.conf'/g" /etc/dansguardian/dansguardian.conf

Restart

After configuration, I like to completely restart the proxy services to make sure they are using the latest configuration:

sudo service privoxy force-reload
sudo service dansguardian start
Copyright © 2022 by Julian Easterling. SOME RIGHTS RESERVED.
Privacy Policy              Terms of Use             


Creative Commons License
Except where otherwise noted, content on this site is
licensed under a Creative Common Attribution-Share Alike 4.0 International License.


All of the opinions expressed on this website are those of Julian Easterling and
do not represent the views of any of my current and previous clients or employers in any way.

If you notice an error on the site or content that has not been properly attributed, bring
it to my attention using the contact page and I will endeavor to fix it as soon as I can.

I accept no responsibility or liability for any damages incurred by following any of
my advice or by using any of the information on my site or of those sites that I link to.