iTP Secure WebServer System Administrator's Guide (iTPWebSvr 5.1+)

Configuration Directives
iTP Secure WebServer System Administrator’s Guide—522659-001
A-43
Region
DisableCloseNotify
The DisableCloseNotify command prevents the iTP Secure WebServer from
sending a close-notify alert before closing an SSL 3.0 connection.
Use this Region command if your browser is known to hang when it receives
connection termination alerts, and you therefore want to disable such alerts.
By default, close-notify alerts are sent before closing an SSL 3.0 connection.
To use DisableCloseNotify in a Region directive, enter the following:
Region /* {
if {[info exists HEADER(user-agent)]
&& [string match "*MSIE*" $HEADER(user-agent)]} {
DisableCloseNotify
}
}
EnableIncludes [-restricted] [-nesting level]
The EnableIncludes command permits the full or partial use of server-side
includes (SSIs) on particular regions. For information about setting up SSIs on the
server, see Setting Up a Server-Side Include (SSI)
on page 7-48.
The EnableIncludes command accepts the following arguments:
-restricted
Use the -restricted argument to fully enable the use of SSIs on a given
region, including the use of the exec command (see SSI Directives on
page 7-50). If you specify the EnableIncludes command without the
-restricted argument, SSIs are enabled for the given region but the exec
command is disabled.
-nesting level
Use the -nesting argument to specify the number of nesting levels (level)
allowed in a document include. The default is 3, meaning, for example, that
document 1 can include document 2, which can include document 3, which can
i n c l u d e d o c u m e n t 4 ( f o u r d o c u m e n t s , t h r e e l e v e l s o f n e s t i n g ) .
By default, SSIs are fully disabled.
To use EnableIncludes in a Region directive, enter the following:
Region * {{
EnableIncludes -restricted 1 -nesting 1
}