我正在使用IIS Express来托管我的网站,我想在IIS 6中执行类似于Directory Security的操作。在IIS 6中,我能够转到目录安全性选项卡并允许匿名用户本地Windows帐户。
IIS Express中有相应的东西吗?我需要在applicationhost.config中进行哪些更改?
由于
答案 0 :(得分:3)
IIS Express进程在登录用户下运行。使用默认设置,匿名请求将在进程的标识下执行。
通过编辑applicationhost.config(在“%userprofile%\ documents \ iisExpress \ config \”中)并在anonymousAuthentication部分中设置匿名用户和密码,有一种方法可以为匿名身份验证配置显式用户
<anonymousAuthentication enabled="true" userName="foo" password="bar" >
注意: