VPN_CGI创建

This commit is contained in:
陈冠林
2018-12-04 15:41:58 +08:00
commit df7f755035
28 changed files with 1373 additions and 0 deletions

16
VPN_CGI/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()