IIS Express - 模拟 Windows 帐户
我正在使用 IIS Express 托管我的网站,并且我想做一些类似于 IIS 6 中的目录安全性的操作。在 IIS 6 中,我能够转到“目录安全性”选项卡并允许匿名用户成为本地 Windows帐户。
IIS Express 中有类似的东西吗?我需要在 applicationhost.config 中进行哪些更改?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IIS Express 进程在登录用户下运行。使用默认设置,匿名请求将以进程的身份执行。
有一种方法可以配置显式用户进行匿名身份验证,方法是编辑 applicationhost.config(在“%userprofile%\documents\iisExpress\config\”中)并在anonymousAuthentication 部分设置匿名用户和密码
注意:
IIS Express process runs under the logged on user. With default settings, anonymous requests will execute under the identity of the process.
There is a way to configure explicit user for anonymous authentication, by editing applicationhost.config (in "%userprofile%\documents\iisExpress\config\") and setting your anonymous user and password in anonymousAuthentication section
<anonymousAuthentication enabled="true" userName="foo" password="bar" >
Notes: