NOTES ON OpenBSD POST-INSTALLATION OF SQUID 2.3 ----------------------------------------------- ** An old squid.conf will not work with squid 2.3! ** The local (OpenBSD) differences are: - configuration files are in ${SYSCONFDIR} - sample configuration files are in ${PREFIX}/share/examples/squid/conf - error message files are in ${PREFIX}/share/squid/errors - sample error message files are in ${PREFIX}/share/examples/squid/errors - icons are in ${PREFIX}/share/squid/icons - sample icons are in ${PREFIX}/share/examples/squid/icons - the cache is in ${STATEDIR}/cache - logs are stored in ${STATEDIR}/logs - the ugid squid runs as is www:www 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 ${PREFIX}/bin/squid ]; then echo -n ' squid'; ${PREFIX}/bin/squid & fi