Changes between Version 10 and Version 11 of django_apache_and_mod_wsgi


Ignore:
Timestamp:
Nov 16, 2008, 7:25:48 PM (15 years ago)
Author:
Graham Dumpleton
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • django_apache_and_mod_wsgi

    v10 v11  
    55== Installation ==
    66
    7 The mod_wsgi package can be downloaded from http://code.google.com/p/modwsgi/. Ensure that you work through the mod_wsgi [http://code.google.com/p/modwsgi/wiki/QuickInstallationGuide installation] and [http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide configuration] instructions before trying to setup Django. For links to Windows binaries and steps on setting up mod_wsgi Windows see its separate [http://code.google.com/p/modwsgi/wiki/InstallationOnWindows installation] instructions but still refer to main installation instructions to work out if mod_wsgi was installed correctly. If wanting to know about source code reloading issues when running Django under Apache and mod_wsgi then ensure you read document about [http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode reloading] on mod_wsgi site.
     7The mod_wsgi package can be downloaded from http://code.google.com/p/modwsgi/. Ensure that you work through the mod_wsgi [http://code.google.com/p/modwsgi/wiki/QuickInstallationGuide installation] and [http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide configuration] instructions before trying to setup Django. For links to Windows binaries and steps on setting up mod_wsgi Windows see its separate [http://code.google.com/p/modwsgi/wiki/InstallationOnWindows installation] instructions but still refer to main installation instructions to work out if mod_wsgi was installed correctly.
     8
     9If wanting to know about source code reloading issues when running Django under Apache and mod_wsgi then ensure you read document about [http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode reloading] on mod_wsgi site. Do be aware that reloading your application by touching the WSGI script file only works for mod_wsgi daemon mode on UNIX/Apache 2.X systems. That specific reloading feature is not available on Windows, Apache 1.3 or if using embedded mode with Apache 2.X.
    810
    911Note that the mod_wsgi site provides its own documentation for [http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango integrating Django with mod_wsgi]. Those instructions go into areas this document does not and in some respect should be seen as being a more definitive source of information. It is also a good idea to read through other documentation on the mod_wsgi site as well, especially in respect to installation, configuration or application issues. Reading the other documentation on the mod_wsgi site will save you a lot of time if you do have any issues as it is quite comprehensive.
Back to Top