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:21:30 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/master 144206db3 -> b6427c83f


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/b6427c83
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/b6427c83
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/b6427c83

Branch: refs/heads/master
Commit: b6427c83fa5b245d90523016bfb14bf7a581230c
Parents: 144206d
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:20:46 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/b6427c83/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.