Ticket #15974: Django-Docs-Ticket15974

File Django-Docs-Ticket15974, 1.5 KB (added by RogueBean, 13 years ago)
Line 
1Index: docs/howto/deployment/modwsgi.txt
2===================================================================
3--- docs/howto/deployment/modwsgi.txt (revision 16259)
4+++ docs/howto/deployment/modwsgi.txt (working copy)
5@@ -55,6 +55,18 @@
6 replace 'mysite.settings' with your correct settings file, and '/path/to/mysite'
7 with your own project's location.
8
9+
10+.. _serving-static-files:
11+
12+Serving static files
13+===================
14+
15+See http://docs.djangoproject.com/en/dev/howto/static-files/
16+
17+More details on configuring a mod_wsgi site to serve static files
18+using Apache can be found in the mod_wsgi documentation on `hosting static files`_.
19+
20+
21 .. _serving-media-files:
22
23 Serving media files
24@@ -105,8 +117,8 @@
25 .. _Apache: http://httpd.apache.org/
26 .. _Cherokee: http://www.cherokee-project.com/
27
28-More details on configuring a mod_wsgi site to serve static files can be found
29-in the mod_wsgi documentation on `hosting static files`_.
30+.. More details on configuring a mod_wsgi site to serve static files can be found
31+.. in the mod_wsgi documentation on `hosting static files`_.
32
33 .. _hosting static files: http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines#Hosting_Of_Static_Files
34
35@@ -120,6 +132,8 @@
36 responsible for setting up Apache, or whichever media server you're using, to
37 serve the admin files.
38
39+Also note that "admin media files" are actually static files.
40+
41 The admin files live in (:file:`django/contrib/admin/media`) of the Django
42 distribution.
43
Back to Top