-2

My release was successfully completed and generating the webapp URL,but when i click on that url it haven't displayed my web page. I am getting this type of error,I am deploying the sample html static web page using the azure devops,It was successfully deployed but i have not get the webpage showing an error like:"You do not have permission to view this directory or page".I am try to deploy the same with the python also but getting the same error in this case also. url:http://html1213111webapps.azurewebsites.net/

  • 1
    You need to show screencaps of what you are doing, steps to reproduce. This is a poorly worded question and i have no idea how to answer it. – Andy Dec 27 '19 at 15:45
  • Does this answer your question? [Azure website message "You do not have permission to view this directory or page.". What to do?](https://stackoverflow.com/questions/48853599/azure-website-message-you-do-not-have-permission-to-view-this-directory-or-page) – Jonas Dec 29 '19 at 01:31
  • Flagged it as duplicate. Basically checkout this SO [question](https://stackoverflow.com/questions/48853599/azure-website-message-you-do-not-have-permission-to-view-this-directory-or-page/48854367). – Jonas Dec 29 '19 at 01:33
  • I Tried in all different ways which are recommended by the people,but i still facing the same error? I got all files in kudu console but havn't resolve thta error. – Narendra Kumar Pokala Jan 07 '20 at 05:32

1 Answers1

0

From the error description, it is not very clear about what went wrong here. So you can refer to the link provided by Jonas in the comment for troubleshooting.

Many startup errors don't produce useful information in the Application Event Log. You need to check whether your deployed web app files are available or not through KUDU Console.

You can open xxx.scm.azurewebsites.net. This should redirect you to KUDU interface where you can see few tabs.Or open Advanced Tools in the Development Tools area, select the Go→ button, the Kudu console opens in a new browser tab or window . Using the navigation bar at the top of the page, open Debug console and select CMD . Then go to site-> wwwroot,that should contains all your files.

Also, make sure that your index.html is added to wwwroot , you can check this from Site wwwroot tab.

In addition , you can enable diagnostics logging for apps in Azure App Service to check the complete error details and root cause.

For other detailed troubleshooting , please refer to the similar question link in the comment.

Hugh Lin
  • 17,829
  • 2
  • 21
  • 25