.when(Path.matches("/index.html"))
.perform(Response.withOutputStreamWrappedBy(new WrappedStreamToUppercase()))
.addRule()
.when(Path.matches("/gzip.html"))
.perform(Response.withOutputStreamWrappedBy(new GZipResponseStreamWrapper()));
return config;
}