diff --git a/readthedocs/wsgi.py b/readthedocs/wsgi.py new file mode 100644 index 000000000..a8f0b255b --- /dev/null +++ b/readthedocs/wsgi.py @@ -0,0 +1,13 @@ +import os + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "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)