diff options
author | Tim Laszlo <tim.laszlo@gmail.com> | 2010-10-21 12:51:12 -0500 |
---|---|---|
committer | Tim Laszlo <tim.laszlo@gmail.com> | 2010-10-21 12:52:18 -0500 |
commit | 4fa804bafe8a39135db76a7dca1917d22a60e1a4 (patch) | |
tree | 0dc8f09b639c20de3071df8cfdd26a01b782420f /reports/reports.wsgi | |
parent | c3c735f161628b349aafdb1331224350591f11cc (diff) | |
download | bcfg2-4fa804bafe8a39135db76a7dca1917d22a60e1a4.tar.gz bcfg2-4fa804bafe8a39135db76a7dca1917d22a60e1a4.tar.bz2 bcfg2-4fa804bafe8a39135db76a7dca1917d22a60e1a4.zip |
web_reports: Moved location of reports.wsgi to a more stable location
Diffstat (limited to 'reports/reports.wsgi')
-rw-r--r-- | reports/reports.wsgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/reports/reports.wsgi b/reports/reports.wsgi new file mode 100644 index 000000000..232650485 --- /dev/null +++ b/reports/reports.wsgi @@ -0,0 +1,4 @@ +import os +os.environ['DJANGO_SETTINGS_MODULE'] = 'Bcfg2.Server.Reports.settings' +import django.core.handlers.wsgi +application = django.core.handlers.wsgi.WSGIHandler() |