Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change default Site Under Construction page on Azure Web App

When I publish my site to Azure web app I see a blank site with title 'Site Under Construction', how can I change that default page

like image 729
Emrah KONDUR Avatar asked Jan 02 '18 11:01

Emrah KONDUR


1 Answers

In Azure Web Apps, the default document is the web page that is displayed at the root URL for a website. The first matching file in the list is used. Refer File structure on azure to know more about the files and directories on Azure Web App. You can add a default document in the default documents list.

Go to Web App -> Settings -> Application settings -> Default documents -> Add and save

You may also check whether the deployed files are available or not using Kudu Console.

Hope this helps.

like image 130
AshokPeddakotla-MSFT Avatar answered Nov 15 '22 15:11

AshokPeddakotla-MSFT