increased default proxy client timeout to one minute

pull/1/head
Michael Peter Christen 12 years ago
parent ed1d5bace6
commit cc90f82dbb

@ -684,7 +684,7 @@ isTransparentProxy=false
connectionKeepAliveSupport=true
# Specifies the timeout the proxy sould use
proxy.clientTimeout = 30000
proxy.clientTimeout = 60000
# Specifies if the proxy should send the via header according to RFC
proxy.sendViaHeader=true

@ -131,7 +131,7 @@ public final class HTTPDProxyHandler {
isTransparentProxy = Boolean.parseBoolean(sb.getConfig("isTransparentProxy","false"));
// set timeout
timeout = Integer.parseInt(sb.getConfig("proxy.clientTimeout", "10000"));
timeout = Integer.parseInt(sb.getConfig("proxy.clientTimeout", "60000"));
// create a htRootPath: system pages
htRootPath = new File(sb.getAppPath(), sb.getConfig("htRootPath","htroot"));

Loading…
Cancel
Save