Mercurial > public > sg101
view sg101/apache/sg101.wsgi @ 849:ff645a692791
For issue #79, use bleach to sanitize both user input markdown & html.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 30 Oct 2014 19:30:37 -0500 |
parents | aeafbf3ecebf |
children | 92b4baa0383b |
line wrap: on
line source
import os import sys import site OFFLINE = False site.addsitedir('/svr/django-sites/sg101/lib/python2.7/site-packages') sys.path.append('/svr/django-sites/sg101/sg101') sys.path.append('/svr/django-sites/sg101/sg101/tools') os.environ['PYTHON_EGG_CACHE'] = '/svr/django-sites/sg101/eggs' def offline_handler(environ, start_response): wsgi_dir = os.path.dirname(__file__) sys.path.append(wsgi_dir) offline_file = os.path.join(wsgi_dir, '..', 'templates', 'offline.html') if os.path.exists(offline_file): response_headers = [('Content-type','text/html')] response = open(offline_file).read() else: response_headers = [('Content-type','text/plain')] response = 'SurfGuitar101.com website maintenance in progress; please check back soon.' if environ['REQUEST_METHOD'] == 'GET': status = '503 Service Unavailable' else: status = '405 Method Not Allowed' start_response(status, response_headers) return [response] if not OFFLINE: os.environ['DJANGO_SETTINGS_MODULE'] = 'sg101.settings.production' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() else: application = offline_handler