summaryrefslogtreecommitdiff
path: root/docs/narr/project.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-11-01 19:26:08 +0000
committerChris McDonough <chrism@agendaless.com>2008-11-01 19:26:08 +0000
commit65e110304147fa4c19d9c6cc29e0f289e1465b4b (patch)
tree354e0972c49e364a4e606a64558e3ea22056a8d3 /docs/narr/project.rst
parent4af9009e1765ea413465d477060b3d82f470562f (diff)
downloadpyramid-65e110304147fa4c19d9c6cc29e0f289e1465b4b.tar.gz
pyramid-65e110304147fa4c19d9c6cc29e0f289e1465b4b.tar.bz2
pyramid-65e110304147fa4c19d9c6cc29e0f289e1465b4b.zip
- Change default paster template generator to use ``Paste#http``
server rather than ``PasteScript#cherrpy`` server. The cherrypy server has a security risk in it when ``REMOTE_USER`` is trusted by the downstream application.
Diffstat (limited to 'docs/narr/project.rst')
-rw-r--r--docs/narr/project.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index c7f53a4e5..c117d906a 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -309,8 +309,8 @@ changes will not require an application restart to be detected. See
The ``[server:main]`` section of the configuration file configures a
WSGI server which listens on port 6543. It is configured to listen on
-all interfaces (``0.0.0.0``), and is configured to use four threads
-for our application.
+all interfaces (``0.0.0.0``). The ``Paste#http`` server will create a
+new thread for each request.
.. note::