Forum Discussion
Guy_Goodenough_
Sep 27, 2018Nimbostratus
Port redirect for only *some* urls
I have a web server that is set up with the basic http iApp, and is configured to accept traffic on port 443, and redirect traffic on port 80 to 443. The web server itself accepts traffic on port 443...
Kevin_Stewart
Sep 27, 2018Employee
One option is to create two pools and use an iRule to select a pool based on URI.
when HTTP_REQUEST {
if { [string tolower [HTTP::uri]] starts_with "/subdir" } {
pool mypool_6443
} else {
pool mypool_443
}
}
You'll also want to enable OneConnect on the VIP. You could also do this pool selection with a CPM policy.
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