iTP Secure WebServer System Administrator's Guide (Version 7.0)
Configuration Directives
iTP Secure WebServer System Administrator’s Guide—523346-012
A-67
RegionSet
•
Performs no conversion on image references
For more information, see Rewriting HTML References on page 11-13.
This default applies:
-RewriteImageLinks Off
To use -RewriteImageLinks in an SI_Department Region command:
SI_Department 5 -RewriteImageLinks absolute
-SignatureLength { 32 | 64 | 128 }
The SignatureLength attribute specifies how many bits long the message
authentication code (MAC) for tickets must be. The longer the MAC is, the more
tamperproof the ticket.
This default applies:
-SignatureLength 32
To use -SignatureLength in an SI_Department Region command:
SI_Department 5 -SignatureLength 128
RegionSet
Syntax
RegionSet variable value
Description
Use the RegionSet directive to set a variable (variable) to a value (value) that
can be referred to in subsequent Region commands. This directive is useful for
storing values (such as a list of hosts allowed access) that need to be used in multiple
Region commands. For example:
RegionSet allowedHosts "*.company.com *.foo.com" Region /* {
AllowHost $allowedHosts
}
In this example, the variable allowedHosts is set to the compound value
*.company.com *.foo.com. Then this value is referred to (by allowedHosts) in
the Region command AllowHost.
Any number of RegionSet directives are allowed in the configuration file.
Default
None