1
0
Files
angie-conv-image/angie/snip/http-response-headers.j2
2025-06-05 11:01:19 +03:00

6 lines
226 B
Django/Jinja

## sourced by autoconf/http-response-headers.conf
## add response headers
{%- set resp_hdr_dict = j2cfg.response_headers or {} -%}
{%- for h, v in resp_hdr_dict|dictsort %}
add_header {{ h }} {{ v | ngx_esc }};
{%- endfor %}