Azure上的Umbraco-Web角色包上载

Azure上的Umbraco-Web角色包上载,umbraco,Umbraco,我正试图通过本教程在Azure上建立一个Umbraco站点: 我到达了包上载到web角色的位置 当我转到云应用程序的url时,出现以下错误: 我已转到Web.Config文件并添加: <system.web> <customErrors mode="Off" /> <system.web> 我重新上传了这个包。这没有帮助 我解开了它,然后找到了名为web.debug.config和web.release.config的文件,其中包含以下代码:

我正试图通过本教程在Azure上建立一个Umbraco站点:

我到达了包上载到web角色的位置

当我转到云应用程序的url时,出现以下错误:

我已转到Web.Config文件并添加:

<system.web>
    <customErrors mode="Off" />
<system.web>

我重新上传了这个包。这没有帮助

我解开了它,然后找到了名为web.debug.config和web.release.config的文件,其中包含以下代码:

<system.web>
<!--
  In the example below, the "Replace" transform will replace the entire 
  <customErrors> section of your web.config file.
  Note that because there is only one customErrors section under the 
  <system.web> node, there is no need to use the "xdt:Locator" attribute.

  <customErrors defaultRedirect="GenericError.htm"
    mode="RemoteOnly" xdt:Transform="Replace">
    <error statusCode="500" redirect="InternalError.htm"/>
  </customErrors>
-->
  </system.web>

我不确定上述代码的更改是否对任何事情都有帮助,所以我没有碰过它

我还注意到,当我在Visual Studio(2013)中打包Azure云应用程序时,输出中有一条消息:


Umbrazure.Web(0,0):警告WAT170:配置设置“Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString”设置为使用配置文件“ServiceConfiguration.Cloud.cscfg”中角色“Umbrazure.Web”的本地存储仿真程序。要访问Microsoft Azure存储服务,必须提供有效的Microsoft Azure存储连接字符串


我很想听听你对这个问题的看法。我怀疑我错过了一些小东西,或者,自从最初的代码项目教程发布以来,Azure中的一些东西发生了一些变化