debian: add debian_wsgi.py script, rename settings to debian_settings,py

This commit is contained in:
Benjamin Dauvergne 2013-09-21 01:15:49 +02:00
parent 8d6f3993e1
commit ed3a95a8b2
5 changed files with 37 additions and 4 deletions

32
debian/debian_wsgi.py vendored Normal file
View File

@ -0,0 +1,32 @@
"""
WSGI config for wcsinst project.
This module contains the WSGI application used by Django's development server
and any production WSGI deployments. It should expose a module-level variable
named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover
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
# 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"] = "wcsinst.settings"
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "debian_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
application = get_wsgi_application()
# Apply WSGI middleware here.
# from helloworld.wsgi import HelloWorldApplication
# application = HelloWorldApplication(application)

2
debian/manage.py vendored
View File

@ -4,7 +4,7 @@ import sys
if __name__ == "__main__":
sys.path.insert(0, '/usr/lib/wcsinstd')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "debian_settings")
from django.core.management import execute_from_command_line

View File

@ -31,9 +31,9 @@ DAEMON_ARGS="--pid $PIDFILE \
--workers=1 \
--worker-class=sync \
--timeout=60 \
wcsinst.wsgi:application"
debian_wsgi:application"
PYTHONPATH=/usr/lib/$NAME
export PYTHONPATH=/usr/lib/$NAME
# Exit if the package is not installed
[ -x $DAEMON ] || exit 0

View File

@ -1,2 +1,3 @@
debian/manage.py usr/lib/wcsinstd
debian/settings.py usr/lib/wcsinstd
debian/debian_settings.py usr/lib/wcsinstd
debian/debian_wsgi.py usr/lib/wcsinstd