Forum Discussion
ga_129682
Nimbostratus
Sep 12, 2013Big-ip in the middle fo SSL
I have a need to SSL offload a public certificates on a 2 virtual servers. Then connect SSL to the same load balanced servers on port 4443. with different uri's
I am a newb so any suggestions would b...
Kevin_Stewart
Employee
Sep 12, 2013Okay, so is it safe to say that decryption and re-encryption is working, and that the server is now just complaining about a URI?
If so, do you need to just append the URI to the request if it doesn't exist:
when HTTP_REQUEST {
if { [HTTP::uri] equals "/" }
HTTP::uri "/uri1"
}
}
or actually redirect the user to the new URI:
when HTTP_REQUEST {
if { [HTTP::uri] equals "/" } {
HTTP::redirect "https://[HTTP::host]/uri1"
}
}
The first will transparently replace the URI on its way to the server using HTTP::uri, and the second will physical redirect the user to a new URL using HTTP::redirect.
I'm not quite sure I understand yet where uri1 and uri2 fit into all of this.
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