openbsd-ports/www/squid/pkg/MESSAGE

23 lines
840 B
Plaintext
Raw Normal View History

2006-10-03 14:32:44 -04:00
NOTES ON OpenBSD POST-INSTALLATION OF SQUID 2.6
1999-05-09 16:01:50 -04:00
The local (OpenBSD) differences are:
2002-08-23 10:10:20 -04:00
- configuration files are in ${SYSCONFDIR}/squid
- sample configuration files are in ${PREFIX}/share/examples/squid
2000-06-09 16:21:41 -04:00
- error message files are in ${PREFIX}/share/squid/errors
- sample error message files are in ${PREFIX}/share/examples/squid/errors
2000-06-09 16:21:41 -04:00
- icons are in ${PREFIX}/share/squid/icons
- sample icons are in ${PREFIX}/share/examples/squid/icons
- the cache is in ${SQUIDDIR}/cache
- logs are stored in ${SQUIDDIR}/logs
- the ugid squid runs as is _squid:_squid
1999-05-09 16:01:50 -04:00
Please remember to initialize the cache by running "squid -z" before
2001-01-08 15:03:11 -05:00
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:
2004-10-31 01:54:37 -05:00
if [ -x ${PREFIX}/sbin/squid ]; then
echo -n ' squid'; ${PREFIX}/sbin/squid
1999-05-09 16:01:50 -04:00
fi
2004-10-31 01:54:37 -05:00