mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
Using embedded Solr 8.11.1
This commit is contained in:
parent
4c1c923677
commit
423b00947d
@ -93,8 +93,8 @@ statements in the solrconfig.xml file to reference plugin jars outside of
|
||||
this directory for loading "contrib" plugins via relative paths.
|
||||
|
||||
If you make a copy of this example server and wish to use the
|
||||
ExtractingRequestHandler (SolrCell), DataImportHandler (DIH), the
|
||||
clustering component, or any other modules in "contrib", you will need to
|
||||
ExtractingRequestHandler (SolrCell), DataImportHandler (DIH),
|
||||
or any other modules in "contrib", you will need to
|
||||
copy the required jars or update the paths to those jars in your
|
||||
solrconfig.xml.
|
||||
|
||||
|
32
KeywordSearch/solr/server/etc/jetty-gzip.xml
Executable file
32
KeywordSearch/solr/server/etc/jetty-gzip.xml
Executable file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0"?><!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
|
||||
|
||||
<!-- =============================================================== -->
|
||||
<!-- Mixin the GZIP Handler -->
|
||||
<!-- This applies the GZIP Handler to the entire server -->
|
||||
<!-- If a GZIP handler is required for an individual context, then -->
|
||||
<!-- use a context XML (see test.xml example in distribution) -->
|
||||
<!-- =============================================================== -->
|
||||
|
||||
<Configure id="Server" class="org.eclipse.jetty.server.Server">
|
||||
<Call name="insertHandler">
|
||||
<Arg>
|
||||
<New id="GzipHandler" class="org.eclipse.jetty.server.handler.gzip.GzipHandler">
|
||||
<Set name="minGzipSize"><Property name="jetty.gzip.minGzipSize" deprecated="gzip.minGzipSize" default="2048"/></Set>
|
||||
<Set name="checkGzExists"><Property name="jetty.gzip.checkGzExists" deprecated="gzip.checkGzExists" default="false"/></Set>
|
||||
<Set name="compressionLevel"><Property name="jetty.gzip.compressionLevel" deprecated="gzip.compressionLevel" default="-1"/></Set>
|
||||
<Set name="inflateBufferSize"><Property name="jetty.gzip.inflateBufferSize" default="0"/></Set>
|
||||
<Set name="deflaterPoolCapacity"><Property name="jetty.gzip.deflaterPoolCapacity" default="-1"/></Set>
|
||||
<Set name="syncFlush"><Property name="jetty.gzip.syncFlush" default="false" /></Set>
|
||||
|
||||
<Set name="excludedAgentPatterns">
|
||||
<Array type="String">
|
||||
<Item><Property name="jetty.gzip.excludedUserAgent" deprecated="gzip.excludedUserAgent" default=".*MSIE.6\.0.*"/></Item>
|
||||
</Array>
|
||||
</Set>
|
||||
|
||||
<Set name="includedMethodList"><Property name="jetty.gzip.includedMethodList" default="GET,POST" /></Set>
|
||||
<Set name="excludedMethodList"><Property name="jetty.gzip.excludedMethodList" default="" /></Set>
|
||||
</New>
|
||||
</Arg>
|
||||
</Call>
|
||||
</Configure>
|
@ -93,7 +93,7 @@
|
||||
<Call name="addRule">
|
||||
<Arg>
|
||||
<New class="org.eclipse.jetty.rewrite.handler.HeaderPatternRule">
|
||||
<Set name="pattern">*</Set>
|
||||
<Set name="pattern">/solr/*</Set>
|
||||
<Set name="name">Content-Security-Policy</Set>
|
||||
<Set name="value">default-src 'none'; base-uri 'none'; connect-src 'self'; form-action 'self'; font-src 'self'; frame-ancestors 'none'; img-src 'self'; media-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self'; worker-src 'self';</Set>
|
||||
</New>
|
||||
@ -102,7 +102,7 @@
|
||||
<Call name="addRule">
|
||||
<Arg>
|
||||
<New class="org.eclipse.jetty.rewrite.handler.HeaderPatternRule">
|
||||
<Set name="pattern">*</Set>
|
||||
<Set name="pattern">/solr/*</Set>
|
||||
<Set name="name">X-Content-Type-Options</Set>
|
||||
<Set name="value">nosniff</Set>
|
||||
</New>
|
||||
@ -111,7 +111,7 @@
|
||||
<Call name="addRule">
|
||||
<Arg>
|
||||
<New class="org.eclipse.jetty.rewrite.handler.HeaderPatternRule">
|
||||
<Set name="pattern">*</Set>
|
||||
<Set name="pattern">/solr/*</Set>
|
||||
<Set name="name">X-Frame-Options</Set>
|
||||
<Set name="value">SAMEORIGIN</Set>
|
||||
</New>
|
||||
@ -120,7 +120,7 @@
|
||||
<Call name="addRule">
|
||||
<Arg>
|
||||
<New class="org.eclipse.jetty.rewrite.handler.HeaderPatternRule">
|
||||
<Set name="pattern">*</Set>
|
||||
<Set name="pattern">/solr/*</Set>
|
||||
<Set name="name">X-XSS-Protection</Set>
|
||||
<Set name="value">1; mode=block</Set>
|
||||
</New>
|
||||
|
@ -103,6 +103,9 @@ grant {
|
||||
permission java.lang.RuntimePermission "writeFileDescriptor";
|
||||
// needed by hadoop http
|
||||
permission java.lang.RuntimePermission "getProtectionDomain";
|
||||
// needed by aws s3 sdk (Apache HTTP Client)
|
||||
permission java.lang.RuntimePermission "setFactory";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.reflect";
|
||||
|
||||
// These two *have* to be spelled out a separate
|
||||
permission java.lang.management.ManagementPermission "control";
|
||||
@ -198,6 +201,11 @@ grant {
|
||||
|
||||
permission java.io.FilePermission "${log4j.configurationFile}", "read,write,delete,readlink";
|
||||
|
||||
// Credentials for S3 Repository
|
||||
permission java.io.FilePermission "${aws.sharedCredentialsFile}", "read,readlink";
|
||||
permission java.io.FilePermission "${aws.configFile}", "read,readlink";
|
||||
permission java.io.FilePermission "${user.home}${/}.aws${/}-", "read,readlink";
|
||||
|
||||
// expanded to a wildcard if set, allows all networking everywhere
|
||||
permission java.net.SocketPermission "${solr.internal.network.permission}", "accept,listen,connect,resolve";
|
||||
};
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/ext/log4j-layout-template-json-2.16.0.jar
Executable file
BIN
KeywordSearch/solr/server/lib/ext/log4j-layout-template-json-2.16.0.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/http2-common-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/http2-common-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/http2-server-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/http2-server-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/jetty-http-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/jetty-http-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/jetty-io-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/jetty-io-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/jetty-server-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/jetty-server-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/jetty-servlet-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/jetty-servlet-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/jetty-servlets-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/jetty-servlets-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/jetty-util-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/jetty-util-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/jetty-webapp-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/jetty-webapp-9.4.44.v20210927.jar
Executable file
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/lib/jetty-xml-9.4.44.v20210927.jar
Executable file
BIN
KeywordSearch/solr/server/lib/jetty-xml-9.4.44.v20210927.jar
Executable file
Binary file not shown.
12
KeywordSearch/solr/server/modules/gzip.mod
Executable file
12
KeywordSearch/solr/server/modules/gzip.mod
Executable file
@ -0,0 +1,12 @@
|
||||
[description]
|
||||
Enable GzipHandler for dynamic gzip compression
|
||||
for the entire server.
|
||||
|
||||
[tags]
|
||||
handler
|
||||
|
||||
[depend]
|
||||
server
|
||||
|
||||
[xml]
|
||||
etc/jetty-gzip.xml
|
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/asm-8.0.1.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/asm-8.0.1.jar
Executable file
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/asm-commons-8.0.1.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/asm-commons-8.0.1.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/caffeine-2.9.2.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/caffeine-2.9.2.jar
Executable file
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-core-1.27.0.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-core-1.27.0.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/checker-qual-3.10.0.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/checker-qual-3.10.0.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-io-2.8.0.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-io-2.8.0.jar
Executable file
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang-2.6.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang-2.6.jar
Executable file
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang3-3.10.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang3-3.10.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.12.3.jar
Executable file
BIN
KeywordSearch/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.12.3.jar
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user