|
|
|
@ -41,7 +41,7 @@ import javax.net.ssl.SSLContext;
|
|
|
|
|
|
|
|
|
|
import net.yacy.cora.util.ConcurrentLog;
|
|
|
|
|
import net.yacy.http.servlets.GSAsearchServlet;
|
|
|
|
|
import net.yacy.http.servlets.SolrServlet;
|
|
|
|
|
import net.yacy.http.servlets.SolrSelectServlet;
|
|
|
|
|
import net.yacy.http.servlets.YaCyDefaultServlet;
|
|
|
|
|
import net.yacy.http.servlets.YaCyProxyServlet;
|
|
|
|
|
import net.yacy.search.Switchboard;
|
|
|
|
@ -134,9 +134,9 @@ public class Jetty8HttpServerImpl implements YaCyHttpServer {
|
|
|
|
|
htrootContext.addServlet(sholder,"/*");
|
|
|
|
|
|
|
|
|
|
//add SolrServlet
|
|
|
|
|
htrootContext.addServlet(SolrServlet.class, "/solr/select"); // uses the default core, collection1
|
|
|
|
|
htrootContext.addServlet(SolrServlet.class, "/solr/collection1/select"); // the same servlet, identifies the collection1 core using the path
|
|
|
|
|
htrootContext.addServlet(SolrServlet.class, "/solr/webgraph/select"); // the same servlet, identifies the webgraph core using the path
|
|
|
|
|
htrootContext.addServlet(SolrSelectServlet.class, "/solr/select"); // uses the default core, collection1
|
|
|
|
|
htrootContext.addServlet(SolrSelectServlet.class, "/solr/collection1/select"); // the same servlet, identifies the collection1 core using the path
|
|
|
|
|
htrootContext.addServlet(SolrSelectServlet.class, "/solr/webgraph/select"); // the same servlet, identifies the webgraph core using the path
|
|
|
|
|
|
|
|
|
|
// add proxy?url= servlet
|
|
|
|
|
htrootContext.addServlet(YaCyProxyServlet.class,"/proxy.html");
|
|
|
|
|