0
我試圖通過web.config
將用戶添加到IIS管理器,但每當我添加以下行時,網站就會停止工作,並說web.config
無效。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>