NIFI-544: Compress HTTP Responses for PUT/POST, as well as GET

This commit is contained in:
Mark Payne 2015-04-24 22:01:02 -04:00
parent 6fa596884b
commit 387a971931
1 changed files with 4 additions and 0 deletions

View File

@ -88,6 +88,10 @@
<filter>
<filter-name>gzipCompressionFilter</filter-name>
<filter-class>org.eclipse.jetty.servlets.GzipFilter</filter-class>
<init-param>
<param-name>methods</param-name>
<param-value>get,post,put</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>gzipCompressionFilter</filter-name>