| 1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <configuration>
- <system.webServer>
- <defaultDocument>
- <files>
- <remove value="default.aspx" />
- <remove value="iisstart.htm" />
- <remove value="Default.asp" />
- <remove value="Default.htm" />
- <add value="index.php" />
- </files>
- </defaultDocument>
- <handlers>
- <add name="Python FastCGI" path="*" verb="*" modules="FastCgiModule" scriptProcessor="c:\python\python.exe|c:\python\lib\site-packages\wfastcgi.py" resourceType="Unspecified" requireAccess="Script" />
- </handlers>
- </system.webServer>
- <appSettings>
- <add key="WSGI_HANDLER" value="django.core.wsgi.get_wsgi_application()" />
- <add key="PYTHONPATH" value="C:\webproject\second" />
- <add key="DJANGO_SETTINGS_MODULE" value="second_pro.settings" />
- </appSettings>
- <system.web>
- <identity impersonate="true" />
- </system.web>
- </configuration>
|