cloudflare / ngx_brotli_module

Brotli module for NGINX, including the encoder
BSD 2-Clause "Simplified" License
113 stars 13 forks source link

if enabled brotli - broken standart nginx module #13

Open KeeperPro opened 6 years ago

KeeperPro commented 6 years ago

hello,

if enabled bortli comression and site accessed via https - nginx module http_addition_module stop working on https/ssl site, if use http - works.

brotli config:

brotli on;
brotli_comp_level 11;

addition module config: ssl on; .... add_after_body /footer.html; location /footer.html { root /home/mirrors/mirror; }

footer not added if accessed by https, if http same config - all works proper.

vkrasnov commented 6 years ago

Looks like an issue with module order. Over https brotli doesn't work. I'll look into it.