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

Administering Session Identifiers for Anonymous
Sessions
iTP Secure WebServer System Administrator’s Guide—522659-001
11- 5
Enabling Session Identifiers
Activating Ticketing for Regions
The final step to activating anonymous ticketing is to specify the regions that should be
tracked by using the SI_RequireSI command in the Region directive, which has
the following form:
SI_RequireSI departmentID groupID
where:
departmentID
is the department name you initialized using the SI_Department directive.
groupID
should be the same group ID you specified when you enabled anonymous ticketing
using the -EnableAnonymousTicketing attribute.
For example:
Region /Open_Stuff/*.html {
SI_RequireSI Open_Department 5
}
In this example, the Region command directs the server to track accesses of all files
ending in .html in the directory /Open_Stuff. Enter similar region directives for all
regions you want to track.
The following example includes all the directives needed to activate tracking:
#
# Turn on Session Identifiers
#
SI_Enable YES
#
# Declare a department as allowing anonymous ticketing
# to group 0. Because it is anonymous, we can pick any
# legal name we wish (that is, anything that does not
# have a space in it).
SI_Department Engineering -EnableAnonymousTicketing {0}
#
# protect all *.htm* and *.cgi* files with anonymous
# tickets
#
Region {*.htm*} {
SI_RequireSI Engineering 0
}
Region {*.cgi*} {
SI_RequireSI Engineering 0
}