This commit is contained in:
陈冠林
2018-12-04 20:33:38 +08:00
parent 366cbd5997
commit 26e21bd46a
8 changed files with 157 additions and 0 deletions

16
temp/wsgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
WSGI config for VPN_CGI 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/2.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'VPN_CGI.settings')
application = get_wsgi_application()