我尝试在django 2.2.2
(Windows Server 2019)上建立我的IIS 10
项目'WebGUI',但可惜我无法使其正常工作。
WFastCGI
已安装并启用,我创建了一个web.config
并在其中声明了一个Python FastCGI
处理程序。键应该是正确的,据我所知,这就是我应该配置的全部。
web.config:
<configuration>
<system.webServer>
<handlers>
<add name="Python FastCGI"
path="*"
verb="*"
modules="FastCgiModule"
scriptProcessor="c:\python\python37-32\python.exe|c:\python\python37-32\lib\site-packages\wfastcgi.py"
resourceType="Unspecified"
requireAccess="Script" />
</handlers>
</system.webServer>
<appSettings>
<!--Required Settings-->
<add key="WSGI_HANDLER" value="WebGUI.wsgi.application" />
<add key="PYTHONPATH" value="C:\inetpub\wwwroot\WebGUI" />
<add key="WSGI_LOG" value="d:\wfastcgi.log" />
<add key="DJANGO_SETTINGS_MODULE" value="WebGUI.settings" />
</appSettings>
</configuration>
我的settings.py说WSGI_APPLICATION = 'WebGUI.wsgi.application'
和我的 wsgi.py :
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'WebGUI.settings')
application = get_wsgi_application()
读取WSGI处理程序时发生错误:
Traceback (most recent call last):
File "c:\python\python37-32\lib\site-packages\wfastcgi.py",line 791,
in main env, handler = read_wsgi_handler(response.physical_path)
File "c:\python\python37-32\lib\site-packages\wfastcgi.py", line 633,
in read_wsgi_handler handler = get_wsgi_handler(os.getenv("WSGI_HANDLER"))
File "c:\python\python37-32\lib\site-packages\wfastcgi.py", line 603,
in get_wsgi_handler handler = getattr(handler, name) AttributeError:
module 'WebGUI' has no attribute 'wsgi' StdOut: StdErr:
答案 0 :(得分:0)
已解决。 由于某种原因,我在Project-Folder中有一个__ init__.py,这使wfastcgi感到困惑。