Azure Web应用中设置静态虚拟目录的方法(比如部署Django需要用到)

一、WEB应用中设置虚拟目录

二、在虚拟目录下放一个文件web.config,内容如下:

  

Azure Web应用中设置静态虚拟目录的方法(比如部署Django需要用到)
<?xml version="1.0"?>  
<configuration>  
    <system.webServer>
        <handlers>
           <clear />
            <add 
                name="StaticFile"
                path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" 
                resourceType="Either" 
                requireAccess="Read" />
        </handlers>
    </system.webServer>
</configuration>  
Azure Web应用中设置静态虚拟目录的方法(比如部署Django需要用到)

 在Azure WebApp中部署Django应用全文参考:https://blogs.msdn.microsoft.com/azureossds/2017/09/01/django-app-with-httpplatformhandler-in-azure-app-services-windows/

 


本文转自 宋兴柱 博客园博客,原文链接:http://www.cnblogs.com/songxingzhu/p/8418860.html   ,如需转载请自行联系原作者

上一篇:测试开发工程必备技能之一:Mock的使用


下一篇:CentOS7中使用yum安装Nginx的方法