I've encountered an error deploying a site to a server. 将网站部署到服务器时遇到错误。 When trying to load the home page, or access authentication on the new site in IIS, I get the error: 尝试加载主页或访问IIS中新站点上的身份验证时,出现错误: web
Config Error: This configuration section cannot be used at this path. 配置错误:没法在此路径上使用此配置部分。 This happens when the section is locked at a parent level. 当节锁定在父级时,会发生这种状况。 Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false". 锁定默认状况下是(overrideModeDefault =“ Deny”),或者是由一个带有overlayMode =“ Deny”或旧版allowOverride =“ false”的位置标记显式设置的。 服务器
More detail can be found here, in Scenario 7 matches my hex error code. 在方案7中匹配个人十六进制错误代码,能够在这里找到更多详细信息。 app
The solution given on the linked site above is to set Allow for overrideModeDefault in the section mentioned in my error, in the applicationHost.config file. 上面的连接站点上给出的解决方案是在个人错误中提到的部分中,在applicationHost.config文件中设置Allow for overlayModeDefault。 In my case, under Security in system.webServer . 就我而言,位于system.webServer中的 Security下。 But if I look at the applicationHost.config on my local computer, where the site is properly deployed already, that section is set to Deny . 可是,若是我查看本地计算机上已经正确部署了站点的applicationHost.config ,则该部分设置为Deny 。 ide
If this solution is correct, how is my local instance running just fine with the same web.config ? 若是此解决方案正确,那么个人本地实例如何在相同的web.config下正常运行? According to my applicationHost.config , that section should be locked, but it's not. 根据个人applicationHost.config ,该部分应被锁定,但不是。 I'd prefer to not change the applicationHost.config file, because there are many other sites running on that server. 我但愿不要更改applicationHost.config文件,由于该服务器上还有许多其余站点正在运行。 Is there another solution? 还有其余解决方案吗? 网站