2008-07-16 21:18:27 +00:00
|
|
|
NOTES ON OpenBSD POST-INSTALLATION OF SQUID 2.7
|
1999-05-09 20:01:50 +00:00
|
|
|
|
|
|
|
The local (OpenBSD) differences are:
|
2002-08-23 14:10:20 +00:00
|
|
|
- configuration files are in ${SYSCONFDIR}/squid
|
2002-05-10 04:18:23 +00:00
|
|
|
- sample configuration files are in ${PREFIX}/share/examples/squid
|
2000-06-09 20:21:41 +00:00
|
|
|
- error message files are in ${PREFIX}/share/squid/errors
|
2000-08-05 02:23:14 +00:00
|
|
|
- sample error message files are in ${PREFIX}/share/examples/squid/errors
|
2000-06-09 20:21:41 +00:00
|
|
|
- icons are in ${PREFIX}/share/squid/icons
|
2000-08-05 02:23:14 +00:00
|
|
|
- sample icons are in ${PREFIX}/share/examples/squid/icons
|
2002-02-20 01:17:03 +00:00
|
|
|
- the cache is in ${SQUIDDIR}/cache
|
|
|
|
- logs are stored in ${SQUIDDIR}/logs
|
2003-07-08 20:43:20 +00:00
|
|
|
- the ugid squid runs as is _squid:_squid
|
1999-05-09 20:01:50 +00:00
|
|
|
|
1999-08-04 02:43:37 +00:00
|
|
|
Please remember to initialize the cache by running "squid -z" before
|
2001-01-08 20:03:11 +00:00
|
|
|
trying to run Squid for the first time.
|
1999-08-04 02:43:37 +00:00
|
|
|
|
1999-05-09 20:01:50 +00:00
|
|
|
You can also edit /etc/rc.local so that Squid is started automatically:
|
2004-10-31 06:54:37 +00:00
|
|
|
|
2002-07-24 18:14:08 +00:00
|
|
|
if [ -x ${PREFIX}/sbin/squid ]; then
|
|
|
|
echo -n ' squid'; ${PREFIX}/sbin/squid
|
1999-05-09 20:01:50 +00:00
|
|
|
fi
|
2004-10-31 06:54:37 +00:00
|
|
|
|