密码保护 Elmah.axd 文件
我已在我的 Web 项目中成功设置 Elmah,并且可以在以下位置访问崩溃日志: http://www.myserver.com/Elmah.axd 。
唯一的问题是如何保护此 URL,以便只有我的同事(而不是匿名用户和已登录但不属于我团队的用户)可以访问它。系统上已设置 ASP.NET 表单身份验证。
谢谢,
阿德里安
I've succesfully set up Elmah in my web project and I can access the crash log at
http://www.myserver.com/Elmah.axd .
The only question is how to secure this URL so that only my colleagues (as opposed to anonymous users and users who are logged in, but not part of my team) can access it. ASP.NET forms authentication is already set up on the system.
Thanks,
Adrian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Phil Haack 有一篇关于此的博客文章:
http:// /haacked.com/archive/2007/07/24/securely-implement-elmah-for-plug-and-play-error-logging.aspx
Phil Haack had a blog post about this:
http://haacked.com/archive/2007/07/24/securely-implement-elmah-for-plug-and-play-error-logging.aspx
如果您设置了角色,则可以使用 web.config 文件将对该文件的访问权限限制为仅指定角色内的人员。
If you have roles setup, you could use the web.config file to restrict access to that file only to people within a specified role.