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

6 lines
228 B
Django/Jinja

## sourced by conf/proxy-http/headers.conf
## set/remove request headers
{%- set req_hdr_dict = j2cfg.request_headers or {} -%}
{%- for h, v in req_hdr_dict|dictsort %}
proxy_set_header {{ h }} {{ v | ngx_esc }};
{%- endfor %}