Forum Discussion
Martin_Vlasko
Altocumulus
Mar 25, 2015Sorry Page for VS without HTTP profile
I need to implement Sorry Page solution on our LTM. The sorry page should be shown to the user if all node members of particular VS are down.
I have a VS listening on IP:443 and I am doing only a s...
cdougall_14195
Cirrus
Mar 25, 2015You're pretty much stuck with using something unique unless you're willing to add the HTTP and SSL profiles.
The easy solution would be to have a dedicated pool to service the sorry pages. You can't do redirects or mess with the unencrypted headers unless you apply those other profiles..
when CLIENT_ACCEPTED {
if { [active_members [LB::server pool]] == 0} {
if { [TCP::local_port clientside] eq "443" } {
pool sorry_https_pool
} else {
pool sorry_http_pool
}
}
}
Probably worth noting that this since you're not terminating SSL, you would need to have one pool for HTTP and one for HTTPS.
Martin_Vlasko
Altocumulus
Mar 26, 2015My virtual server listens only to port 443, so I assume I don't need to care about HTTP.
But the suggestion below from THi looks promising, I will give it a try.
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