修改文件夹名字

This commit is contained in:
陈冠林
2018-12-07 17:03:23 +08:00
parent a1f6a969cf
commit a30d5b84fe
8 changed files with 157 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()