Add default WSGI config
This commit is contained in:
parent
bd584416e9
commit
0234298d19
1 changed files with 10 additions and 0 deletions
|
@ -10,3 +10,13 @@ https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/
|
|||
import os
|
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "publichealth.settings.production")
|
||||
|
||||
# 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)
|
||||
|
|
Loading…
Reference in a new issue