diff --git a/docs/ref/contrib/gis/deployment.txt b/docs/ref/contrib/gis/deployment.txt
index d98fc51..fa232ca 100644
a
|
b
|
way to deploy Django applications with Apache.
|
18 | 18 | As long as ``mod_wsgi`` is configured correctly, it does not |
19 | 19 | matter whether the version of Apache is prefork or worker. |
20 | 20 | |
21 | | .. note:: |
22 | | |
23 | | The ``Alias`` and ``Directory`` configurations in the examples |
24 | | below use an example path to a system-wide installation folder of Django. |
25 | | Substitute in an appropriate location, if necessary, as it may be |
26 | | different than the path on your system. |
27 | | |
28 | 21 | ``mod_wsgi`` |
29 | 22 | ------------ |
30 | 23 | |
31 | 24 | Example:: |
32 | 25 | |
33 | 26 | <VirtualHost *:80> |
34 | | WSGIDaemonProcess geodjango user=geo group=geo processes=5 threads=1 |
35 | | WSGIProcessGroup geodjango |
36 | | WSGIScriptAlias / /home/geo/geodjango/world.wsgi |
| 27 | Alias /static/ /path/to/geodjango_site/static/ |
37 | 28 | |
38 | | Alias /media/ "/usr/lib/python2.6/site-packages/django/contrib/admin/media/" |
39 | | <Directory "/usr/lib/python2.6/site-packages/django/contrib/admin/media/"> |
40 | | Order allow,deny |
41 | | Options Indexes |
| 29 | <Directory /path/to/geodjango_site/static> |
| 30 | Order deny,allow |
42 | 31 | Allow from all |
43 | | IndexOptions FancyIndexing |
44 | 32 | </Directory> |
45 | 33 | |
| 34 | WSGIDaemonProcess geodjango user=geo group=geo processes=5 threads=1 |
| 35 | WSGIProcessGroup geodjango |
| 36 | WSGIScriptAlias / /path/to/geodjango_site/mysite/wsgi.py |
| 37 | |
46 | 38 | </VirtualHost> |
47 | 39 | |
48 | 40 | .. warning:: |