Forum Discussion
nick_s_162783
Nimbostratus
Mar 11, 2019Enable and disable HTTP2 in irule
We have a virtual server in LTM that uses an irule to send requests to two pools of servers based on the path (e.g. /images/*) which works fine.
We need the requests that go to one of the pools to u...
Rico
Cirrus
Mar 11, 2019You could try an iRule that checks if the request is HTTP2 and then change the pool based on that like this:
when HTTP_REQUEST
{
if{[HTTP2::active]}
{
pool http2_pool
}
else
{
pool other_pool
}
}
Here is the documentation for that command. It says it was implemented in 11.4.
If you have any more questions, I am sure I can help.
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
