根据角色保护网站?

发布于 2024-11-19 11:58:34 字数 811 浏览 5 评论 0原文

我在本地使用 ELMAH,我想在生产环境中使用它。当我搜索时,我发现了以下内容:

回想一下,在 ELMAH 配置部分,我们设置了 允许远程访问属性为0,禁止远程用户 查看错误日志。禁止匿名访客很重要 查看错误日志,因为错误详细信息可能会泄露安全性 漏洞或其他敏感信息。如果您决定设置 将此属性设置为 1 并启用对错误日志的远程访问,然后它 锁定 elmah.axd 路径非常重要,以便仅授权 访客可以访问它。这可以通过添加一个来实现 元素添加到 Web.config 文件。

我想启用远程访问,所以根据同一篇文章,我应该执行以下操作:

 <location path="elmah.axd">
  <system.web>
  <authorization>
  <allow roles="Admin" />
  <deny users="*" />
  </authorization>
  </system.web>  
  </location>

我的问题是:

  • 我使用Informix数据库,那么如何在登录时处理角色想法,根据到Informix?

  • 如果我想存储日志数据,我应该使用sql server还是mysql 数据库,因为我没有找到所需的 informix 数据库 ELMAH 下载?

I use ELMAH locally and I wanna to use it in the production environment. When I search, I found the following:

Recall that in the ELMAH configuration's section we set the
allowRemoteAccess attribute to 0, which prohibits remote users from
viewing the error log. It's important to prohibit anonymous visitors
from viewing the error log, as the error details might reveal security
vulnerabilities or other sensitive information. If you decide to set
this attribute to 1 and enable remote access to the error log then it
is important to lock down the elmah.axd path so that only authorized
visitors can access it. This can be achieved by adding a
element to the Web.config file.

I wanna enable remote access, so according to the same article, I should do the following:

 <location path="elmah.axd">
  <system.web>
  <authorization>
  <allow roles="Admin" />
  <deny users="*" />
  </authorization>
  </system.web>  
  </location>

My question is:

  • I use Informix database, so how to handle the role idea when logging in, according to Informix?

  • And if I wanna to store the log data should I use sql server or mysql
    data base, because I didn't find the informix database required in
    ELMAH downloads?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十年九夏 2024-11-26 11:58:34

我使用informix数据库,那么当角色想法时如何处理
登录,根据informix?

您必须编写一个使用 Informix 数据库的自定义角色提供程序。您可以从此处开始

如果我想存储日志数据,我应该使用sql server还是mysql
数据库,因为我没有找到所需的informix数据库
ELMAH 下载?

您可以使用XmlErrorLog。它将日志保存为 XML 文件。

I use informix database, so how to handle the role idea when
logining,according to the informix?

You will have to write a custom Role Provider that use your Informix database. You can start here

And if i wanna to store the log data should i use sql server or mysql
data base, because i didn't find the informix database required in
ELMAH downloads?

You can use XmlErrorLog. Which saves logs as XML files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文