Skip to content

eintr/mod_gzip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

mod_gzip

A modified ngx_http_gzip_filter_module.

The original module within nginx has an issue so called: First-packet-latency problem which means the gzip module will not send data until the whole response recieved while proxying a large http response.

This module added a new configure item to change the deflating policy to solve the problem:

gzip_flush_mode { NO_FLUSH | SYNC_FLUSH }

  • NO_FLUSH: Original policy, module will not send data until the whole response recieved
  • SYNC_FLUSH: New policy, module will send data quite sooner

INSTALL

Just replace the original file in NGINX source and compile.

About

A modified ngx_http_gzip_filter_module.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages