为什么相同的文件被复制到 Windows Azure WebRole 中的 /Approot 和 /Siteroot?
我发现approot和sitesroot用于:
\Approot - 客户的代码、aspx 页面、DLL 等。 \Sitesroot\ – 这是运行完整 IIS 站点的文件夹 从。部署角色时,将复制 \Approot 中的文件 到此 \Sitesroot 文件夹,然后 IIS 将配置为运行 来自 \Sitesroot 的站点。对角色的任何临时测试更改 (web.config 更改、新的 DLL 等)应放置在此处。
我想知道为什么有两个独立的文件夹,因为它们包含相同的文件?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AppRoot
在角色启动时使用,并且应包含一个来自RoleEntryPoint
。此内容来自 Web 角色配置的站点,并由WaIISHost
工作进程使用。SiteRoot
包含来自节点.csdef
文件中的 >Sites 并在 IIS 中配置。AppRoot
is used at role startup and shoud contain one derived class fromRoleEntryPoint
. This content is from web role configured site and is used byWaIISHost
worker process.SiteRoot
contains web sites from nodeSites
in the.csdef
file and are configured in IIS.