Is it possible to perform configuration changes to an Azure Web App without the application restarting?

后端 未结 2 980
长发绾君心
长发绾君心 2021-01-24 17:28

Currently when pushing updates via our CI/CD pipeline to the Azure Web Apps the nodes are being forcefully rebooted by azure once the configuration changes are completed.

<
2条回答
  •  臣服心动
    2021-01-24 17:55

    As Fabrizio Accatino said, when you touch the web.config, IIS automatically restarts the app domain.

    If you do this to avoid downtime, you could add a deployment slot and publish your newest project to it. When you want to publish your project to production environment,you can swap them.For more details, refer to this article.

提交回复
热议问题