在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>