From 3dd1d28c7fd172f8aefeca1831c89ba2d85ee48f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 29 Sep 2005 19:56:17 +0000 Subject: Clarified potentially confusing sentence in docs/modpython.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@728 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modpython.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/modpython.txt') diff --git a/docs/modpython.txt b/docs/modpython.txt index 72c2d9a073..acac50a6d5 100644 --- a/docs/modpython.txt +++ b/docs/modpython.txt @@ -29,8 +29,8 @@ Then edit your ``httpd.conf`` file and add the following:: PythonDebug On -...and replace ``myproject.settings.main`` with the path to your settings file, -in dotted-package syntax. +...and replace ``myproject.settings.main`` with the Python path to your +settings file. This tells Apache: "Use mod_python for any URL at or under '/mysite/', using the Django mod_python handler." It passes the value of ``DJANGO_SETTINGS_MODULE`` -- cgit v1.3 From 9fdacc7a66e7db8ba7db351540c16f0a2fd631e7 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 12 Oct 2005 03:52:05 +0000 Subject: Added note to docs/modpython.txt about non-dev arrangements not serving admin media files git-svn-id: http://code.djangoproject.com/svn/django/trunk@845 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modpython.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs/modpython.txt') diff --git a/docs/modpython.txt b/docs/modpython.txt index acac50a6d5..d24ea29018 100644 --- a/docs/modpython.txt +++ b/docs/modpython.txt @@ -143,6 +143,9 @@ particular part of the site:: Just change ``Location`` to the root URL of your media files. +Note that the Django development server automagically serves admin media files, +but this is not the case when you use any other server arrangement. + .. _lighttpd: http://www.lighttpd.net/ .. _TUX: http://en.wikipedia.org/wiki/TUX_web_server .. _Apache: http://httpd.apache.org/ -- cgit v1.3