如何将Angular 6部署到Azure Web App-您没有权限

时间:2018-09-14 07:58:07

标签: angular azure

我创建了一个干净的Angular 6 App。我将以下web.config添加到src文件夹:

<configuration>
<system.webServer>
  <rewrite>
    <rules>
      <rule name="Angular" stopProcessing="true">
        <match url=".*" />
        <conditions logicalGrouping="MatchAll">
          <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
          <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
        </conditions>
        <action type="Rewrite" url="/" />
      </rule>
    </rules>
  </rewrite>
</system.webServer>

我在angular.json文件的Assets部分中添加了“ src / web.config”。我已将Web应用程序上的节点版本更新为10.6。

当我将应用程序部署并导航到站点时,我得到以下提示:您无权查看此目录或页面。

我遵循了以下示例: https://itnext.io/easy-way-to-deploy-a-angular-5-application-to-azure-web-app-using-vsts-pipelines-4a288b9deae1

有什么建议吗?

1 个答案:

答案 0 :(得分:4)

我花了很长时间才弄清楚这一点。希望对您有所帮助。

  • 在您的应用服务中,点击“应用设置”。滚动到底部。您将看到“虚拟应用程序和目录”。您的虚拟路径应为“ /”,物理路径应为“ site / wwwroot /”。将物理路径更改为“ site / wwwroot /'appname'”,“ appname”应为应用程序的名称。或者应该是“ dist”中的任何文件夹。