
#-----------------------------------------------------------------------
# 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# https
#t# servers
#
#   |--------------------------------------------------------------------|
#d# Allow local (LAN or Firewall) web browsers to communicate with remote
#d# HTTPS servers on port 443.
#   |--------------------------------------------------------------------|
#
#-----------------------------------------------------------------------
# START OF MODULE CODE
#-----------------------------------------------------------------------

for action in ignore deny accept
do
	for host in `Option_Value $action $INTOPT https servers`
	do
		Hostports $action remote tcp "HTTPS" $host https
	done
done
unset action host

