
#-----------------------------------------------------------------------
# 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

