-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixup isset check Test error fixes Add logger get/set test Test username/password Add documentation for auth Added some more documentation Try to make Solr secured with BasicAuth
- Loading branch information
1 parent
e9bdb2f
commit 6e743b7
Showing
65 changed files
with
497 additions
and
350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"authentication": { | ||
"blockUnknown": true, | ||
"class": "solr.BasicAuthPlugin", | ||
"credentials": { | ||
"solr": "IV0EHq1OnNrj6gvRCwvFwTrZ1+z1oBbnQdiVC3otuq0= Ndd7LKvVBAaZIF0QAVi1ekCfAJXr1GGfLtRUXhgrF8c=" | ||
}, | ||
"realm": "My Solr users", | ||
"forwardCredentials": false | ||
}, | ||
"authorization": { | ||
"class": "solr.RuleBasedAuthorizationPlugin", | ||
"permissions": [ | ||
{ | ||
"name": "security-edit", | ||
"role": "admin" | ||
} | ||
], | ||
"user-role": { | ||
"solr": "admin" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.