[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Memo: squid conf setting on proxy farms



 
    
squid conf setting on proxy farms:

#  TAG: http_port
#       The port number where Squid will listen for HTTP client
#       requests.  Default is 3128, for httpd-accel mode use port 80.
#       May be overridden with -a on the command line.
#
#       You may specify multiple ports here, but they MUST all be on
#       a single line.
#
http_port 8000

# OPTIONS WHICH AFFECT THE NEIGHBOR SELECTION ALGORITHM
# -----------------------------------------------------------------------------

#  TAG: cache_peer
#       To specify other caches in a hierarchy, use the format:
#
#               hostname type http_port icp_port
#
#             type:  either 'parent', 'sibling', or 'multicast'.
#
#       proxy_port:  The port number where the cache listens for proxy
#                    requests.
#
#         icp_port:  Used for querying neighbor caches about
#                    objects.  To have a non-ICP neighbor
#                    specify '7' for the ICP port and make sure the
#                    neighbor machine has the UDP echo port
#                    enabled in its /etc/inetd.conf file.
#
cache_peer grumpy-priv sibling 8000 3130
cache_peer happy-priv  sibling 8000 3130

# VRN neighbours
cache_peer regulus.its.deakin.edu.au sibling 3128 3130
cache_peer proxy.monash.edu.au	     sibling 80   3130
cache_peer squid.latrobe.edu.au	     sibling 8080 3130
cache_peer proxy1.cc.swin.edu.au     sibling 8000 3130
cache_peer proxy2.cc.swin.edu.au     sibling 8000 3130
#cache_peer proxywww.rmit.edu.au     sibling 8000 3130
#cache_peer camel.vut.edu.au	     sibling 80   3138


squid.conf in steves' proxy on fluid for authentication:

acl usercheck proxy_auth REQUIRED

proxy_auth_realm Fluid squid proxy-caching web server
authenticate_program /servers/http/squid/bin/pam_authenticator squid

Google