Forum Discussion
satish_txt_2254
Cirrus
Apr 30, 2017disable http 1.1 not working with iRules
I have created following iRules to force or downgrade 1.1 to 1.0 but its not working some how
Disable HTTP 1.1 request
when HTTP_REQUEST {
Don't allow response data to be chunked
...
JG
Cumulonimbus
May 01, 2017If your problem is on the client side, you are better off using the following:
when HTTP_RESPONSE {
HTTP::version "1.0"
if {[HTTP::header exists "Transfer-Encoding"]} {
HTTP::payload unchunk
HTTP::header remove "Transfer-Encoding"
}
}
; if your problem is on the server side, you should not use the OneConnect profile, and you can use:
when HTTP_REQUEST_SEND {
HTTP::version "1.0"
}
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