diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt
index be73c8f..fae8638 100644
a
|
b
|
Basic configuration
|
26 | 26 | |
27 | 27 | Once you've got mod_wsgi installed and activated, edit your Apache server's |
28 | 28 | ``httpd.conf`` file and add the following. If you are using a version of Apache |
29 | | older than 2.4, replace ``Require all granted`` with ``Allow from all``. |
| 29 | older than 2.4, replace ``Require all granted`` with ``Allow from all`` and |
| 30 | also add the line ``Order deny,allow`` above it. |
30 | 31 | |
31 | 32 | .. code-block:: apache |
32 | 33 | |
… |
… |
older than 2.4, replace ``Require all granted`` with ``Allow from all``.
|
35 | 36 | |
36 | 37 | <Directory /path/to/mysite.com/mysite> |
37 | 38 | <Files wsgi.py> |
38 | | Order deny,allow |
39 | 39 | Require all granted |
40 | 40 | </Files> |
41 | 41 | </Directory> |
… |
… |
will be served using mod_wsgi::
|
155 | 155 | |
156 | 156 | <Directory /path/to/mysite.com/mysite> |
157 | 157 | <Files wsgi.py> |
158 | | Order allow,deny |
159 | 158 | Require all granted |
160 | 159 | </Files> |
161 | 160 | </Directory> |
162 | 161 | |
163 | 162 | If you are using a version of Apache older than 2.4, replace |
164 | | ``Require all granted`` with ``Allow from all``. |
| 163 | ``Require all granted`` with ``Allow from all`` and also add the line |
| 164 | ``Order deny,allow`` above it. |
165 | 165 | |
166 | 166 | .. _lighttpd: http://www.lighttpd.net/ |
167 | 167 | .. _Nginx: http://wiki.nginx.org/Main |