openbsd-ports/www/squid/pkg/MESSAGE

27 lines
999 B
Plaintext
Raw Normal View History

1999-05-09 16:01:50 -04:00
NOTES ON OpenBSD POST-INSTALLATION OF SQUID 2.2.RELEASE
-------------------------------------------------------
** An old squid.conf will not work with squid 2.2! **
Documentation on Squid is available at http://squid.nlanr.net/
The local (OpenBSD) differences are:
2000-06-09 16:21:41 -04:00
- configuration files are in ${SYSCONFDIR}
- sample configuration files are in ${PREFIX}/lib/squid/conf
- error message files are in ${PREFIX}/share/squid/errors
- sample error message files are in ${PREFIX}/lib/squid/errors
- icons are in ${PREFIX}/share/squid/icons
- sample icons are in ${PREFIX}/lib/squid/icons
- the cache is in ${STATEDIR}/cache
- logs are stored in ${STATEDIR}/logs
1999-05-09 16:01:50 -04:00
- 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.
1999-05-09 16:01:50 -04:00
You can also edit /etc/rc.local so that Squid is started automatically:
if [ -x /usr/local/bin/squid ]; then
echo -n ' squid'; /usr/local/bin/squid &
fi
Happy caching!