1
0
angie-conv-image/angie/snip.dist/proxy-request-headers.j2

7 lines
262 B
Plaintext
Raw Normal View History

## sourced by conf.d/proxy-http/headers.conf
2024-09-17 14:11:00 +03:00
## hide/remove request headers
{%- set req_hdr_dict = j2cfg.request_headers or {} -%}
{%- for h, v in req_hdr_dict.items() %}
{#- TODO: precise quotation #}
proxy_set_header {{ h }} {{ v.__repr__() }};
{%- endfor %}