X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=djsite%2Fwsgi.py;fp=djsite%2Fwsgi.py;h=395516e1421a3fa2d84afa3c01cf1bf08351036d;hb=520d42a5ab1c027611f5ab18d8387f643f383203;hp=0000000000000000000000000000000000000000;hpb=3d1bcd915e246fe766d4b8fe5e83a9d0aaa028db;p=djsite.git diff --git a/djsite/wsgi.py b/djsite/wsgi.py new file mode 100644 index 0000000..395516e --- /dev/null +++ b/djsite/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for djsite project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "djsite.settings") + +application = get_wsgi_application()