Version
4.0
# The replacement string if the regular expression
matches. Parameters $1 $9 can be used to represent
bracketed parts of the regular expression.
String replacement;
}
VirtualServer.Rule
This structure contains the information on how a rule is assigned to a
virtual server.
struct VirtualServer.Rule {
# The name of the rule.
String name;
# Whether the rule is enabled or not.
Boolean enabled;
# Whether the rule runs on every request/response, or
just the first
VirtualServer.RuleRunFlag run_frequency;
}
4.2.3 Enumerations
VirtualServer.CookieDomainRewriteMode
enum VirtualServer.CookieDomainRewriteMode {
# Do not rewrite the domain
no_rewrite,
# Rewrite the domain to the host header of the request
set_to_request,
# Rewrite the domain to the named domain value
set_to_named
}
VirtualServer.CookieSecureFlagRewriteMode
enum VirtualServer.CookieSecureFlagRewriteMode {
# Do not modify the secure tag
no_modify,
# Set the secure tag
set_secure,
77
New Page 1