Forum Discussion
matthew_b_16251
Jul 10, 2014Nimbostratus
Unable to download files with http profile assigned to VS
Hi,
I am hoping someone can provide with help with an odd problem we have.
We have recently cut over to F5 content switches and we are load balancing multiple site. Before we where running ...
Kevin_Stewart
Jul 10, 2014Employee
The idea would be to simply disable the HTTP profile (put it in "passthrough" mode) for specific conditions. Take a look at the following article for handling webdav:
https://devcentral.f5.com/wiki/iRules.DisablingHTTPProcessingForUnrecognizedHTTPMethods.ashx
And the iRule:
when CLIENT_ACCEPTED {
Enable HTTP processing for all requests by default
HTTP::enable
}
when HTTP_REQUEST {
selectively disable HTTP processing for specific request methods
switch [HTTP::method] {
"MOVE" -
"COPY" -
"LOCK" -
"UNLOCK" -
"PROPFIND" -
"PROPPATCH" -
"MKCOL" { HTTP::disable }
}
}
So if you can distinguish the download request from other requests, you should be able to do similar.
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