Forum Discussion
hoolio
Cirrostratus
May 24, 2007SSL profile options
Can you set the nonssl option for a client SSL profile in a rule? I'd like to be able to give a few customers a rule to use on port 0 VIPs and not have to force them to enable this option on each cli...
hoolio
Cirrostratus
Nov 20, 2007Hi Tom,
You can configure a server SSL profile on the VIP and then use SSL::disable in an iRule to selectively disable the server side encryption. Here's an example:
when HTTP_REQUEST {
Check if request matches the criteria to disable server-side SSL
if { [HTTP::uri] starts_with "/clear"}{
disable SSL on the serverside context
SSL::disable serverside
select the http pool
pool http_pool
} else {
default is to use server-side SSL and the https pool
pool https_pool
}
}Aaron
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects