Re: Request Compression

2016-08-29 Thread Richard Stanway
There is no standard for request compression. HTTP 2 has header compression built in, but if you want to compress request bodies, you have to devise your own solution. On Mon, Aug 29, 2016 at 5:22 AM, serendipity30 wrote: > Anyone has used this? Is gzip_static used for request compress

Re: Request Compression

2016-08-28 Thread Max Clements
When you say "request compression" I guess you referring to entity compression (for example in Post Requests). Nginx ngx_http_gzip_module does NOT support request entity decompression - but you can do this in LUA. An example on how to do this is here: http://www.pataliebre.net/howto-

Re: Request Compression

2016-08-28 Thread serendipity30
Anyone has used this? Is gzip_static used for request compression? Thanks Posted at Nginx Forum: https://forum.nginx.org/read.php?2,269174,269260#msg-269260 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Request Compression

2016-08-24 Thread serendipity30
Hello, This has been asked 3 years back & I would like to know if newer latest version of Nginx supports request compression or not. If yes, how to do so? Note: I'm not referring to response compression which is done by gzip. Thanks Posted at Nginx Forum: https://forum.nginx.org