Changeset - 89af51928504
[Not reviewed]
default
0 1 0
Branko Majic (branko) - 12 years ago 2013-08-18 23:56:22
branko@majic.rs
DMT-1: Fix the calls to os.path.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
project/project_name/wsgi.py
Show inline comments
 
@@ -7,25 +7,25 @@ named ``application``. Django's ``runser
 
this application via the ``WSGI_APPLICATION`` setting.
 

	
 
Usually you will have the standard Django WSGI application here, but it also
 
might make sense to replace the whole Django WSGI application with a custom one
 
that later delegates to the Django one. For example, you could introduce WSGI
 
middleware here, or combine a Django application with an application of another
 
framework.
 

	
 
"""
 
import os
 

	
 
# Set-up the virtual environment.
 
activate_this = path.abspath(path.join(path.dirname(__file__), "../../virtualenv/bin/activate_this.py"))
 
activate_this = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../virtualenv/bin/activate_this.py"))
 
execfile(activate_this, dict(__file__=activate_this))
 

	
 
# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
 
# if running multiple sites in the same mod_wsgi process. To fix this, use
 
# mod_wsgi daemon mode with each site in its own daemon process, or use
 
# os.environ["DJANGO_SETTINGS_MODULE"] = "{{ project_name }}.settings"
 
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "{{ project_name }}.settings")
 

	
 
# This application object is used by any WSGI server configured to use this
 
# file. This includes Django's development server, if the WSGI_APPLICATION
 
# setting points here.
 
from django.core.wsgi import get_wsgi_application
0 comments (0 inline, 0 general)