Windows Azure 基本身份验证
我需要在 Windows Azure 上设置一个测试网站,通常为了防止随机的人查看它,我会使用某种简单的密码设置基本身份验证来过滤人员。 Windows Azure 似乎没有这个选项。
有哪些替代方案?到目前为止,我正在考虑实施另一级别的表单身份验证,但这需要大量工作,需要在网站的生产版本中删除。
有关在 web.config 中实现基本身份验证的文档也极其稀疏。
I need to set up a testing website on Windows Azure, and typically to prevent random people from looking at it I would have set up basic authentication with some sort of trivial password to filter people. Windows Azure, seemingly, does not have this option.
What are the alternatives? So far I am considering implementing another level of forms authentication but this is a lot of work and would need to be stripped out in the production version of the site.
The documentation on implementing Basic-Authentication in the web.config is also shockingly sparse.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您应该能够使用 IIS7 演示 BasicAuthenticationModule 来实现您想要的 - 请参阅完整的代码和说明
http://learn.iis.net/page。 aspx/170/开发模块使用网络/
I think you should be able to use the IIS7 demo BasicAuthenticationModule to achieve what you want - see full code and instructions in
http://learn.iis.net/page.aspx/170/developing-a-module-using-net/