diff --git a/symposion_project/wsgi.py b/symposion_project/wsgi.py new file mode 100644 index 0000000000000000000000000000000000000000..726e2a7bf5cfcb978afadbdee18347a3ddc8ceeb --- /dev/null +++ b/symposion_project/wsgi.py @@ -0,0 +1,11 @@ +from django.core.handlers.wsgi import WSGIHandler + +import pinax.env + + +# setup the environment for Django and Pinax +pinax.env.setup_environ(__file__) + + +# set application for WSGI processing +application = WSGIHandler() \ No newline at end of file