Authentication and Authorization
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
Use authentication to connect with SOLR server
You need activate this feature in SOLR server, to do this, follow steps in SOLR wiki
Change your SolrExpressOptions and set SecurityOptions
services
.AddSolrExpress<TechProduct>(builder => builder
.UseOptions(options =>
{
// ... Other settings
options.Security = new SecurityOptions
{
AuthenticationType