1
0
angie-conv-image/angie/conf.dist/http-response-headers.conf.j2

7 lines
216 B
Plaintext
Raw Normal View History

2024-07-24 22:47:53 +03:00
## add response headers
{%- set resp_hdr_list = ( j2cfg.add_response_headers or {} ) -%}
{%- for h, v in resp_hdr_list.items() %}
{#- TODO: precise quotation #}
add_header {{ h }} {{ v.__repr__() }};
{%- endfor %}