安全页面管理员Solr

时间:2018-05-10 20:29:59

标签: solr

在Windows上安装Solr5.3.0并导入数据。有人可以指导我如何保护mydomain / ip:8983 / solr from public。

我想保护solr的所有页面,除了查询&选择。我想要公开地保留它们。

http://localhost:8983/solr/core/query?
http://localhost:8983/solr/core/select?

这是我的配置示例/ etc / webdefault.xml

<security-constraint>
    <web-resource-collection>
      <web-resource-name>Solr authenticated application</web-resource-name>
      <url-pattern>/</url-pattern>
    </web-resource-collection>
    <auth-constraint>
      <role-name>core1-role</role-name>
    </auth-constraint>
  </security-constraint>

  <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Test Realm</realm-name>
  </login-config>

0 个答案:

没有答案