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

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

### RH/Fedora commands for starting the server at boot ###
### This is 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
