Merge 3871 from 1.4 maint branch
This commit is contained in:
parent
12d9817613
commit
020a306e83
2 changed files with 13 additions and 12 deletions
|
@ -308,9 +308,9 @@
|
|||
<tr>
|
||||
<td colspan="2">
|
||||
Restricts access to the Solr search platform.
|
||||
One or more regular expressions, separated by commas. When a request is
|
||||
made to Solr, the IP address of the requestor must match one of the
|
||||
patterns, or the request will be rejected.
|
||||
The value is a regular expression. When a request is
|
||||
made to Solr, the IP address of the requestor must the expression,
|
||||
or the request will be rejected.
|
||||
<br>
|
||||
Examples:<code>
|
||||
<ul>
|
||||
|
@ -319,7 +319,7 @@
|
|||
</li>
|
||||
<li>
|
||||
vitro.local.solr.ipaddress.mask =
|
||||
127\.0\.0\.1,0:0:0:0:0:0:0:1
|
||||
127\.0\.0\.1|0:0:0:0:0:0:0:1
|
||||
</li>
|
||||
<li>
|
||||
vitro.local.solr.ipaddress.mask = 169.254.*
|
||||
|
|
|
@ -56,16 +56,17 @@ webapp.name = vivo
|
|||
vitro.local.solr.url = http://localhost:8080/vivosolr
|
||||
|
||||
#
|
||||
# Restricts access to the Solr search platform. One or more regular expressions,
|
||||
# separated by commas. When a request is made to Solr, the IP address of the
|
||||
# requestor must match one of the patterns, or the request will be rejected.
|
||||
# Restricts access to the Solr search platform. The value is a regular expression.
|
||||
# When a request is made to Solr, the IP address of the requestor must match the
|
||||
# regular expression, or the request will be rejected.
|
||||
#
|
||||
# NOTE: don't leave a space on the end of the line, unless you want it to be
|
||||
# part of the expression.
|
||||
# Examples:
|
||||
# vitro.local.solr.ipaddress.mask = 127\.0\.0\.1
|
||||
# vitro.local.solr.ipaddress.mask = 127\.0\.0\.1,0:0:0:0:0:0:0:1
|
||||
# vitro.local.solr.ipaddress.mask = 127\.0\.0\.1|0:0:0:0:0:0:0:1
|
||||
# vitro.local.solr.ipaddress.mask = 169.254.*
|
||||
# If this expression doesn't match the IP address, you will see SolrExceptions
|
||||
# in the log.
|
||||
vitro.local.solr.ipaddress.mask = 127\.0\.0\.1,[0:]+:1[^:]*,
|
||||
vitro.local.solr.ipaddress.mask = 127\.0\.0\.1|[0:]+:1
|
||||
|
||||
#
|
||||
# The location where the VIVO application will store the data that it creates.
|
||||
|
|
Loading…
Add table
Reference in a new issue