23 lines
840 B
Plaintext
Raw Normal View History

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
- 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
- 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
- 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 20:01:50 +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-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
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