
### Default paths and settings ###
# SQUID_CONF="/etc/squid/squid.conf"
# SQUID_BINARY="squid"
# ACCESS_LOG="/var/log/squid/access.log"
# ERROR_LOG="/var/log/messages"
# CACHE_LOG="/var/log/squid/cache.log"
# PROC_PATH="/proc"
### (server user/group should be the same as in the standard squid.conf)
# SERVER_USER="squid"
# SERVER_GROUP="squid"
# TOPLEVEL_SWAP_PATH "/var/spool"

### Debian commands for starting the server at boot ###
# SYSINIT_START_CMD="update-rc.d -f squid defaults"
# SYSINIT_STOP_CMD="update-rc.d -f squid remove"

### RH/Fedora commands for starting the server at boot ###
### These are the defaults for the rpm specfile ###
export SYSINIT_START_CMD="chkconfig squid on"
export SYSINIT_STOP_CMD="chkconfig squid off"

./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --sbindir=/usr/sbin &&
make &&
make install
