Skip to content

Instantly share code, notes, and snippets.

@mRoca
Created January 10, 2018 12:31
Show Gist options
  • Save mRoca/fd8847c0ec3e5d7408c7d4bb41869d46 to your computer and use it in GitHub Desktop.
Save mRoca/fd8847c0ec3e5d7408c7d4bb41869d46 to your computer and use it in GitHub Desktop.
solr gzip
<!-- <web-app> -->
<!-- ... -->
<filter>
<filter-name>GzipFilter</filter-name>
<filter-class>org.eclipse.jetty.servlets.GzipFilter</filter-class>
<init-param>
<param-name>mimeTypes</param-name>
<param-value>text/html,text/plain,text/xml,application/xhtml+xml,application/xml,text/css,application/javascript,image/svg+xml,application/json,application/xml; charset=UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>GzipFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- </web-app> -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment