Forum Discussion
- Kevin_Davies_40Nacreous
F5 will not add last-modified headers unless you have additional profiles attached. You will need to check if the 304 message is actually being sent to the client. Use tcpdump and wireshark to confirm this.
- sank_198085NimbostratusThanks will try to capture tcpdump. But the weird thing is it only happens when F5 is brought into picture and access server from firefox browser. When we access server without F5 in between it never happens.
- Kevin_Davies_40NacreousI'm surprised if it modifies any headers. It should just pass them through. A tcpdump capture client and serverside should confirm this.
- sank_198085NimbostratusThanks will try to capture tcpdump. But the weird thing is it only happens when F5 is brought into picture and access server from firefox browser. When we access server without F5 in between it never happens.
- kunjanNimbostratus
Try removing the hdr
when HTTP_REQUEST_SEND { clientside { if {[HTTP::header exists "If-Modified-Since"]}{ HTTP::header remove "If-Modified-Since" } } }
- nitassEmployee
clients use HTTPS (SSL) channel to communicate with the Load Balancer, Load Balancer uses HTTP (Clear) channel to communicate with the server.
3-nodes round robin Port = 80
isn't virtual server listening on port 443? is clientssl profile assigned to the virtual server?
also, i do think you need http to https redirect irule on this virtual server because it is listening on port 443.