19 lines
		
	
	
		
			805 B
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			805 B
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
|     <configuration>
 | |
|         <system.webServer>
 | |
|             <handlers>
 | |
|                 <add name="Python FastCGI" 
 | |
|                      path="*" 
 | |
|                      verb="*" 
 | |
|                      modules="FastCgiModule" 
 | |
|                      scriptProcessor="c:\python35\python.exe|c:\python35\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="d:\caoqianming\mysite" />
 | |
|             <add key="DJANGO_SETTINGS_MODULE" value="mysite.settings" />
 | |
|         </appSettings>
 | |
|     </configuration> |