manymanymany-varia-websites/plugins/gzip_cache
2018-02-01 14:46:15 +01:00
..
__init__.py adding the 2 submodules again 2018-02-01 14:46:15 +01:00
gzip_cache.py adding the 2 submodules again 2018-02-01 14:46:15 +01:00
Readme.rst adding the 2 submodules again 2018-02-01 14:46:15 +01:00
test_gzip_cache.py adding the 2 submodules again 2018-02-01 14:46:15 +01:00

Gzip cache
----------

Certain web servers (e.g., Nginx) can use a static cache of gzip-compressed
files to prevent the server from compressing files during an HTTP call. Since
compression occurs at another time, these compressed files can be compressed
at a higher compression level for increased optimization.

The ``gzip_cache`` plugin compresses all common text type files into a ``.gz``
file within the same directory as the original file.

Settings
--------

* `GZIP_CACHE_OVERWRITE`
  If True, the original files will be replaced by the gzip-compressed files. 
  This is useful for static hosting services (e.g S3). Defaults to False.