changeset 2024:370e995e46c2 beta

fixes in doc about waitress wsgi
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 23 Feb 2012 02:48:32 +0200
parents c45fb78969a3
children 7e979933ffec
files docs/usage/git_support.rst
diffstat 1 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/docs/usage/git_support.rst	Thu Feb 23 02:34:58 2012 +0200
+++ b/docs/usage/git_support.rst	Thu Feb 23 02:48:32 2012 +0200
@@ -16,16 +16,22 @@
 i recommend using waitress_ or gunicorn_ (linux only) for `paste` wsgi app 
 replacement.
 
-To use waitress simply change::
+To use waitress simply change change the following in the .ini file::
 
-    use = egg:Paste#main
+    use = egg:Paste#http
 
 To::
     
     use = egg:waitress#main
 
-In you .ini file, then you can simply run `paster serve` as usual.
+And comment out bellow options::
 
+    threadpool_workers = 
+    threadpool_max_requests = 
+    use_threadpool = 
+    
+
+You can simply run `paster serve` as usual.
 
   
 You can always disable git/hg support by editing a