Forum Discussion
Landono
Nimbostratus
Sep 30, 2013How to extend network timeout for specific PHP call
I'm new to F5, so please excuse me if this is a very basic question.
We're currently transitioning from Nginx to Big-IP LTMs (2000 and 4000 series). Currently in Nginx we have our keep alive tim...
Kevin_Stewart
Employee
Oct 01, 2013I believe you should be able to use the IP::idle_timeout command:
https://devcentral.f5.com/wiki/iRules.IP__idle_timeout.ashx
So something like this:
when HTTP_REQUEST {
if { [string tolower [HTTP::uri]] starts_with "/longcall.php" } {
IP::idle_timeout 300
set update_server_idle 1
}
}
when SERVER_CONNECTED {
if { [info exists update_server_idle] } {
IP::idle_timeout 300
}
}
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