将 app_offline 与 webdeploy 结合使用的最佳实践

发布于 2024-12-11 20:02:22 字数 395 浏览 0 评论 0原文

当我部署网站时,我需要:

  • 使网站脱机。

  • 运行sql来更新数据库。

  • 更新网站。

  • 让网站重新上线

我想尽可能多地编写脚本,而不必访问服务器并进行手动更改。

我目前正在使用 WebDeploy 来推送我的网站更改。它工作得很好,而且我不必确切知道我的网站安装在服务器上的位置。

那么放置/删除 app_offline 文件的最佳方法是什么?如果见过一些使用 msbuild 脚本重命名现有文件 ( app_offline.htm_ ) 的解决方案。但这似乎需要我知道该文件的位置。

有没有办法通过 web_deploy 来做到这一点?

谢谢

When I deploy my web site I need to:

  • Take the site offline.

  • run sql to update the database.

  • update the web site.

  • Put the site back online

I would like to script as much of this as possible without have to go the server and make manual changes.

I am currently using WebDeploy to push my website changes. It works great, and I don't have to know exactly where my site is installed on the server.

So what is the best way to put up/take down the app_offline file? If have seen some solutions where you rename an existing file ( app_offline.htm_ ) using an msbuild script. But it seems like that would require me to know the location of this file.

Is there a way to do this through web_deploy?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转瞬即逝 2024-12-18 20:02:22

是的,您可以在 WebDeploy 部署期间启用 AppOffline,您甚至可以自定义 AppOffline 模板:

msdeploy.exe -verb:sync -source:iisApp=sourceApp -dest:iisApp=destApp,appOfflineTemplate="offlineTemplate.htm" -enablerule:AppOffline

https://blogs.iis.net/msdeploy/webdeploy-3-5-rtw

Yes, you can enable AppOffline during a WebDeploy deployment you can even customize the AppOffline template:

msdeploy.exe -verb:sync -source:iisApp=sourceApp -dest:iisApp=destApp,appOfflineTemplate="offlineTemplate.htm" -enablerule:AppOffline

https://blogs.iis.net/msdeploy/webdeploy-3-5-rtw

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文