The first advise is NOT to expose your Solr directly to the public. Anyone that can hit /search, can also hit /update and wipe out your index.
Unless you run a proper proxy that secures URLs and sanitizes the parameters (in GET, in POST, escaped, etc). And if you are doing that, you can setup the HTTPS in your proxy and have it speak HTTP to Solr on the backend. Otherwise, you need middleware, which runs on a server as well, so you are back into configuring _that_ server (not Solr) for HTTPS. Regards, Alex. ---- http://www.solr-start.com/ - Resources for Solr users, new and experienced On 7 March 2017 at 15:45, pubdiverses <pubdiver...@free.fr> wrote: > Hello, > > I would like to acces my solr instance with https://domain.com/solr. > > how to do this ?