diff options
Diffstat (limited to 'conf/bitz-server.conf.in')
-rw-r--r-- | conf/bitz-server.conf.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/conf/bitz-server.conf.in b/conf/bitz-server.conf.in index 95083c4..416a555 100644 --- a/conf/bitz-server.conf.in +++ b/conf/bitz-server.conf.in @@ -14,6 +14,10 @@ max_workers = 1; # maximum number of requests a worker will serve max_worker_requests = 100; +# communication timeout value in seconds. set this value to +# be 0 to disable timeouts. +comm_timeout = 5; + # request handlers req_handlers : @@ -26,7 +30,7 @@ req_handlers : name = "modpy"; module = "@pkglibdir@/modules/mod_py.so"; } - ) + ); }, { handler = "RESPMOD"; @@ -37,7 +41,7 @@ req_handlers : name = "modpy"; module = "@pkglibdir@/modules/mod_py.so"; } - ) + ); }); |