1

我尝试在(Windows Server 2019)上设置我的django 2.2.2项目“WebGUI” IIS 10,但遗憾的是我无法让它工作。

WFastCGI已安装并启用,我在那里创建web.config并声明了一个 pythonFastCGI处理程序。密钥应该是正确的,据我所知,这就是我应该配置的全部。

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.pyWSGI_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:
4

1 回答 1

-1

解决了。出于某种原因,我的项目文件夹中有一个 __ init__.py,这让 wfastcgi 感到困惑。

于 2019-07-24T11:38:05.237 回答