Forum Discussion
ascherer_304302
Nimbostratus
Dec 27, 2016apm_mobile css file not used on in app browsers
Hey everyone,
The company I'm working at has multiple apps rolled out that use a SAML Authentication with our F5 being the IDP. In these apps the login page is styled with the normal browser css...
So it looks like the CONNECT method doesn't require the Host header then. Can you add some logging to see what you're getting for the HTTP::uri and other headers?
when HTTP_REQUEST {
if { [HTTP::method] == "CONNECT" }{
log local0. "Host: [HTTP::host]"
log local0. "URI: [HTTP::uri]"
set cnt 0
foreach aHeader [HTTP::header names] {
log local0. "h$cnt: $aHeader: [HTTP::header $aHeader]"
incr cnt
}
}
}
[edited to just log for CONNECT requests]
Aaron
- Philip_LukeSep 07, 2020
Nimbostratus
And help would be appreciated.