我正在尝试通过web.config
将用户添加到IIS管理器,但每当我添加以下行时,网站就会停止工作并说web.config
无效。
如果我在administration.config
中添加这些行,该网站是有效的,但我希望通过坚持web.config
来缩小范围。
<system.webServer>
<management>
<authorization defaultProvider="ConfigurationAuthorizationProvider">
<authorizationRules>
<scope path="/MyApp">
<add name="domain\user" />
</scope>
</authorizationRules>
</authorization>
</management>
</system.webServer>
答案 0 :(得分:0)