On 5/10/2016 9:02 AM, Mugeesh Husain wrote: > I am using solr 5.3 version with inbuilt jetty server. > > I am looking for a proxy kind of thing which i could prevent outside User > access for all of the link, I would give only access select and select core > url accessibility other than this should be not open. > > Please give me some suggestion.
There are appliances and software implementing proxy/load balancer functionality (software examples: haproxy, nginx, apache httpd) that can do this. Making it reasonably secure would not be a trivial config, but it is doable. For maximum safety, you should not expose *any* part of your Solr install to end users at all, especially the Internet. Not even the /select endpoint should be exposed. You should have website application code that sits between your users and Solr -- which could be homegrown software, or an existing software package like Wordpress. Thanks, Shawn