NOTES ON OpenBSD POST-INSTALLATION OF SQUID 2.7

The local (OpenBSD) differences are:
- configuration files are in		/etc/squid
- sample configuration files are in	/usr/local/share/examples/squid
- error message files are in		/usr/local/share/squid/errors
- sample error message files are in	/usr/local/share/examples/squid/errors
- icons are in 				/usr/local/share/squid/icons
- sample icons are in			/usr/local/share/examples/squid/icons
- the cache is in 			/var/squid/cache
- logs are stored in 			/var/squid/logs
- the ugid squid runs as is		_squid:_squid

Please remember to initialize the cache by running "squid -z" before
trying to run Squid for the first time.

You can also edit /etc/rc.local so that Squid is started automatically:

    if [ -x /usr/local/sbin/squid ]; then
	echo -n ' squid';	/usr/local/sbin/squid
    fi

