You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it seems that django's request.META, adds many http headers with empty values if they does not exist in client request. e.g. client send a request without Content-Type header, but request.META contains a CONTENT_TYPE key with empty string value.
i think revproxy should not send this headers to upstreams, as it does not make sense to send Content-Type: '' to a web server
The text was updated successfully, but these errors were encountered:
it seems that django's
request.META
, adds many http headers with empty values if they does not exist in client request. e.g. client send a request withoutContent-Type
header, but request.META contains aCONTENT_TYPE
key with empty string value.i think revproxy should not send this headers to upstreams, as it does not make sense to send
Content-Type: ''
to a web serverThe text was updated successfully, but these errors were encountered: