Skip to content
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.

Commit

Permalink
rst format fixes and link.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred Wenzel committed Apr 27, 2011
1 parent a6ec5a2 commit 6b5febd
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions docs/operations.rst
Expand Up @@ -9,7 +9,8 @@ Web Server
Apps are typically run under Apache and mod_wsgi in production. Entry point::

wsgi/playdoh.wsgi
(or whatever you rename it too...)

(or whatever you rename it to...)

Developers can set that up or run in stand-alone mode::

Expand All @@ -20,7 +21,8 @@ certifying an app as **stage ready**.

Apache
~~~~~~
This is what is used in production:
This is a typical virtualhost directive being used in production::

<VirtualHost *:80>
ServerName %HOSTNAME%

Expand All @@ -36,16 +38,20 @@ gunicorn
~~~~~~~~
Totally optional and only for the cool kids.

A lighter weight method of testing your mod_wsgi setup is by using gunicorn.
A lighter weight method of testing your mod_wsgi setup is by using
`gunicorn <http://gunicorn.org/>`_.

One time setup::

One time setup:
pip install gunicorn
ln -s wsgi/playdoh.wsgi wsgi/playdoh.py

Each Time:
Each Time::

touch wsgi/__init__.py
gunicorn wsgi/playdoh:application


Middleware Caching
------------------

Expand Down

0 comments on commit 6b5febd

Please sign in to comment.