increased default proxy client timeout to one minute

This commit is contained in:
Michael Peter Christen 2013-05-06 14:58:18 +02:00
parent ed1d5bace6
commit cc90f82dbb
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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"));