2024-11-08 12:10:06 +03:00
|
|
|
## sourced by conf.d/uwsgi/headers.conf
|
2024-11-08 12:10:06 +03:00
|
|
|
## set/remove request headers
|
2024-09-17 14:11:00 +03:00
|
|
|
{%- set req_hdr_dict = j2cfg.request_headers or {} -%}
|
|
|
|
{%- for h, v in req_hdr_dict.items() %}
|
2024-11-08 12:10:06 +03:00
|
|
|
uwsgi_param {{ h | as_cgi_header }} {{ v | ngx_esc }};
|
2024-09-17 14:11:00 +03:00
|
|
|
{%- endfor %}
|