Kaydet (Commit) e460b1c5 authored tarafından Tim Graham's avatar Tim Graham

Fixed #23708 -- Corrected mod_wsgi docs reference to nonexistent comment in wsgi.py.

Thanks inglesp for the report.
üst af7d66b4
...@@ -61,12 +61,18 @@ should put in this file, and what else you can add to it. ...@@ -61,12 +61,18 @@ should put in this file, and what else you can add to it.
.. warning:: .. warning::
If multiple Django sites are run in a single mod_wsgi process, all of them If multiple Django sites are run in a single mod_wsgi process, all of them
will use the settings of whichever one happens to run first. This can be will use the settings of whichever one happens to run first. This can be
solved with a minor edit to ``wsgi.py`` (see comment in the file for solved by changing::
details), or by :ref:`using mod_wsgi daemon mode<daemon-mode>` and ensuring
that each site runs in its own daemon process.
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "{{ project_name }}.settings")
in ``wsgi.py``, to::
os.environ["DJANGO_SETTINGS_MODULE"] = "{{ project_name }}.settings"
or by :ref:`using mod_wsgi daemon mode<daemon-mode>` and ensuring that each
site runs in its own daemon process.
Using a virtualenv Using a virtualenv
================== ==================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment