8 lines
238 B
Plaintext
8 lines
238 B
Plaintext
|
{#- safe to specify all the time -#}
|
||
|
gzip off;
|
||
|
{%- set modules = ( env.NGX_HTTP_MODULES or '' ) | str_split_to_list -%}
|
||
|
{%- for ext_comp in ['brotli', 'zstd'] %}
|
||
|
{%- if ext_comp in modules %}
|
||
|
{{ ext_comp }} off;
|
||
|
{%- endif %}
|
||
|
{%- endfor %}
|