You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2018/03/16 19:22:00 UTC

lucene-solr:branch_7x: Ref Guide: Parameterize another place that uses version with solr-docs-version variable

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x 9d0e4b1cd -> ed3ff7e20


Ref Guide: Parameterize another place that uses version with solr-docs-version variable


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/ed3ff7e2
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/ed3ff7e2
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/ed3ff7e2

Branch: refs/heads/branch_7x
Commit: ed3ff7e208a3d19429c1ccd18f27b5d07e944efd
Parents: 9d0e4b1
Author: Cassandra Targett <ct...@apache.org>
Authored: Fri Mar 16 14:20:46 2018 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Fri Mar 16 14:21:54 2018 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/solr-control-script-reference.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/ed3ff7e2/solr/solr-ref-guide/src/solr-control-script-reference.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/solr-control-script-reference.adoc b/solr/solr-ref-guide/src/solr-control-script-reference.adoc
index 7cfddb4..d039a31 100644
--- a/solr/solr-ref-guide/src/solr-control-script-reference.adoc
+++ b/solr/solr-ref-guide/src/solr-control-script-reference.adoc
@@ -536,11 +536,11 @@ The `bin/solr auth enable` command makes several changes to enable Basic Authent
 ----
 * Adds two lines to `bin/solr.in.sh` or `bin\solr.in.cmd` to set the authentication type, and the path to `basicAuth.conf`:
 +
-[source]
+[source,subs="attributes"]
 ----
 # The following lines added by ./solr for enabling BasicAuth
 SOLR_AUTH_TYPE="basic"
-SOLR_AUTHENTICATION_OPTS="-Dsolr.httpclient.config=/path/to/solr-6.6.0/server/solr/basicAuth.conf"
+SOLR_AUTHENTICATION_OPTS="-Dsolr.httpclient.config=/path/to/solr-{solr-docs-version}.0/server/solr/basicAuth.conf"
 ----
 * Creates the file `server/solr/basicAuth.conf` to store the credential information that is used with `bin/solr` commands.