diff test.ini @ 2597:7b092b919f4f beta

Switch to waitress wsgi server by default in rhodecode. - waitress is fast, handles chunked encoding correctly (needed for git) - waitress works on linux and windows - it's now default because it can handle git properly out of the box.
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 13 Jul 2012 21:17:38 +0200
parents 6ccf86ebfd4e
children 269c6e0b54cc
line wrap: on
line diff
--- a/test.ini	Fri Jul 13 14:32:45 2012 +0200
+++ b/test.ini	Fri Jul 13 21:17:38 2012 +0200
@@ -30,15 +30,16 @@
 
 [server:main]
 ##nr of threads to spawn
-threadpool_workers = 5
+#threadpool_workers = 5
 
 ##max request before thread respawn
-threadpool_max_requests = 2
+#threadpool_max_requests = 2
 
 ##option to use threads of process
-use_threadpool = true
+#use_threadpool = true
 
-use = egg:Paste#http
+#use = egg:Paste#http
+use = egg:waitress#main
 host = 127.0.0.1
 port = 5000