
#-----------------------------------------------------------------------
# MODULE CONFIGURATION
#-----------------------------------------------------------------------
#
#m# 3
#a# accept ignore deny ports
#i# cluster novirtual
#n# http
#t# servers
#v# ports 80 8080
#
#   |--------------------------------------------------------------------|
#d# Allow local (LAN or Firewall) web browsers to communicate with remote
#d# HTTP servers on the defined ports (80 and 8080 by default).
#   |--------------------------------------------------------------------|
#
#-----------------------------------------------------------------------
# START OF MODULE CODE
#-----------------------------------------------------------------------

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

