
#-----------------------------------------------------------------------
# CHANGES
#-----------------------------------------------------------------------
#
# 2001-02-07  Jean-Sebastien Morisset <jsmoriss@mvlan.net>
#             Modified the deny/ignore rule for clusters.
# 2000-10-28  Jean-Sebastien Morisset <jsmoriss@mvlan.net>
#             Initial module written for v5.1.
#
#-----------------------------------------------------------------------
# MODULE CONFIGURATION
#-----------------------------------------------------------------------
#
#m# 3
#a# accept ignore deny
#i# cluster novirtual
#n# http
#t# servers
#
#   |--------------------------------------------------------------------|
#d# Allow local (LAN or Firewall) web browsers to communicate with remote
#d# HTTP servers on port 80.
#   |--------------------------------------------------------------------|
#
#-----------------------------------------------------------------------
# START OF MODULE CODE
#-----------------------------------------------------------------------

for action in ignore deny accept
do
	for host in `Option_Value $action $INTOPT http servers`
	do
		Hostports $action remote tcp "HTTP" $host www
	done
done
unset action host

