summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-03-02 16:19:28 -0500
committerTim Graham <timograham@gmail.com>2014-03-02 16:19:28 -0500
commit90577c0eb4f46352322d5911e1d7ae69dcf149e7 (patch)
tree6fc81161fea4f2728170a2e893a6cfa127654ec4 /docs/howto
parentea4da8e63c314b4f7cbcb4dd06eef466c1e872ed (diff)
Removed WSGI upgrade instructions for Django 1.3 and earlier.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/deployment/wsgi/index.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/howto/deployment/wsgi/index.txt b/docs/howto/deployment/wsgi/index.txt
index 17eb53cf0c..337db7abd1 100644
--- a/docs/howto/deployment/wsgi/index.txt
+++ b/docs/howto/deployment/wsgi/index.txt
@@ -89,28 +89,3 @@ to combine a Django application with a WSGI application of another framework.
middleware up to version 2.0.7. In those cases the
:data:`~django.core.signals.request_finished` signal isn't sent. This can
result in idle connections to database and memcache servers.
-
-Upgrading from Django < 1.4
----------------------------
-
-If you're upgrading from Django 1.3.x or earlier, you don't have a
-:file:`wsgi.py` file in your project.
-
-You can simply add one to your project's top-level Python package (probably
-next to :file:`settings.py` and :file:`urls.py`) with the contents below::
-
- import os
- os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")
-
- from django.core.wsgi import get_wsgi_application
- application = get_wsgi_application()
-
-The ``os.environ.setdefault`` line just sets the default settings module to
-use, if you haven't explicitly set the :envvar:`DJANGO_SETTINGS_MODULE`
-environment variable. You'll need to edit this line to replace ``mysite`` with
-the name of your project package, so the path to your settings module is
-correct.
-
-Also add ``WSGI_APPLICATION = "mysite.wsgi.application"`` in your settings, so
-that :djadmin:`runserver` finds your ``application`` callable. Don't forget to
-replace ``mysite`` with the name of your project in this line.