Forum Discussion
Fletcher_Cocquy
Nimbostratus
Mar 13, 2007iRule to help WebDAV COPY work through SSL Proxy
We are migrating webdav publishing services to BIG-IP 9.1.2 Build 40.6
We are seeing error 502, on COPY operations and other operations not functioning correctly through the SSL proxied virt...
Colin_Walker_12
Mar 13, 2007Historic F5 Account
From your description above and the snippet of perl code, it sounds like all you need to do is look at the response and check to see if the destination header on any MOVE or COPY responses are written as https. If they are...write them as http.
A rule for that would look something like:
when HTTP_RESPONSE {
if { ( [HTTP::method] equals "MOVE" ) or ( [HTTP::method] equals "COPY" ) } {
if { [HTTP::header Destination] starts_with "https" } {
HTTP::header replace Destination "http://[getfield [HTTP::header Destination] '//' 2]"
}
}
}
HTH,
Colin
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
