7 lines
259 B
Django/Jinja
7 lines
259 B
Django/Jinja
## sourced by autoconf.d/http-response-headers.conf
|
|
## add response headers
|
|
{%- set resp_hdr_dict = j2cfg.response_headers or {} -%}
|
|
{%- for h, v in resp_hdr_dict.items() %}
|
|
{#- TODO: precise quotation #}
|
|
add_header {{ h }} {{ v.__repr__() }};
|
|
{%- endfor %} |