8.1.Integrate IIS with django
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <handlers> <add name="Python FastCGI" path="*" verb="*" modules="FastCgiModule" scriptProcessor="C:\Python36\python.exe|C:\Python36\lib\site-packages\wfastcgi.py" resourceType="Unspecified" requireAccess="Script" /> </handlers> <httpErrors errorMode="Detailed" /> <cgi timeout="00:30:00" /> </system.webServer> <appSettings> <add key="WSGI_HANDLER" value="django.core.wsgi.get_wsgi_application()" /> <add key="PYTHONPATH" value="D:\Sean\3DMapWorkflow_Server" /> <add key="DJANGO_SETTINGS_MODULE" value="MapWorkflow3D.settings" /> </appSettings> </configuration>
Last updated