1
0
Files
angie-conv-image/angie/snip/proxy-response-headers.j2

7 lines
260 B
Django/Jinja

## sourced by conf/proxy-http/headers.conf
## hide response headers
{%- set resp_hdr_dict = j2cfg.response_headers or {} -%}
{%- set resp_hdr_list = resp_hdr_dict | dict_keys -%}
{%- for h in resp_hdr_list %}
proxy_hide_header {{ h | ngx_esc }};
{%- endfor %}