2008-07-16 17:18:27 -04:00
|
|
|
NOTES ON OpenBSD POST-INSTALLATION OF SQUID 2.7
|
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
|
2002-05-10 00:18:23 -04:00
|
|
|
- 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
|
2000-08-04 22:23:14 -04:00
|
|
|
- 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
|
2000-08-04 22:23:14 -04:00
|
|
|
- sample icons are in ${PREFIX}/share/examples/squid/icons
|
2002-02-19 20:17:03 -05:00
|
|
|
- the cache is in ${SQUIDDIR}/cache
|
|
|
|
- logs are stored in ${SQUIDDIR}/logs
|
2003-07-08 16:43:20 -04:00
|
|
|
- the ugid squid runs as is _squid:_squid
|
1999-05-09 16:01:50 -04:00
|
|
|
|
1999-08-03 22:43:37 -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-08-03 22:43:37 -04:00
|
|
|
|
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
|
|
|
|
2002-07-24 14:14:08 -04: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
|
|
|
|