1
0

initial commit

This commit is contained in:
2025-06-05 11:01:19 +03:00
commit 48f13f97a3
297 changed files with 7136 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
brotli_comp_level 5; # default: 6
brotli_window 128k; # default: 512k
brotli_min_length 1024;
brotli_buffers 32 16k;

View File

@@ -0,0 +1,9 @@
{%- set mime_types = j2cfg.compress_types or [] -%}
{%- set mime_types = mime_types | any_to_str_list | uniq_str_list -%}
{%- if mime_types -%}
brotli_types
{%- for t in mime_types %}
{{ t }}
{%- endfor %}
;
{%- endif -%}