为什么相同的文件被复制到 Windows Azure WebRole 中的 /Approot 和 /Siteroot?

发布于 2024-12-21 12:34:52 字数 300 浏览 0 评论 0 原文

我发现approot和sitesroot用于:

\Approot - 客户的代码、aspx 页面、DLL 等。 \Sitesroot\ – 这是运行完整 IIS 站点的文件夹 从。部署角色时,将复制 \Approot 中的文件 到此 \Sitesroot 文件夹,然后 IIS 将配置为运行 来自 \Sitesroot 的站点。对角色的任何临时测试更改 (web.config 更改、新的 DLL 等)应放置在此处。

我想知道为什么有两个独立的文件夹,因为它们包含相同的文件?

I found that approot and sitesroot are used for:

\Approot - The customer’s code, aspx pages, DLLs, etc.
\Sitesroot\ – This is the folder where the full IIS site is run
from. When the role is deployed, the files from \Approot are copied
to this \Sitesroot folder and then IIS will be configured to run the
site from \Sitesroot. Any temporary test changes to the role
(web.config changes, new DLLs, etc) should be placed here.

I wonder why there are two sparate folders as they contain the same files?

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

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

发布评论

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

评论(1

李白 2024-12-28 12:34:52
  • AppRoot 在角色启动时使用,并且应包含一个来自 RoleEntryPoint。此内容来自 Web 角色配置的站点,并由 WaIISHost 工作进程使用。
  • SiteRoot 包含来自节点 .csdef 文件中的 >Sites 并在 IIS 中配置。
  • AppRoot is used at role startup and shoud contain one derived class from RoleEntryPoint. This content is from web role configured site and is used by WaIISHost worker process.
  • SiteRoot contains web sites from node Sites in the .csdef file and are configured in IIS.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文