5
Nginx entfernt den Content-Length-Header für Chunked-Inhalte
Ich verwende Nginx 1.2.3 als Proxy für ein Skript: proxy_set_header Host $host; proxy_pass http://127.0.0.1:8880; proxy_buffering off; proxy_read_timeout 300s; gzip off; Die Skripte senden beide Transfer-encoding: chunkedund Content-Length: 251: HTTP/1.0 307 Temporary Redirect Content-length: 251 Pragma: no-cache Location: /... Cache-control: no-cache Transfer-encoding: chunked Ich brauche beides, aber nginx entfernt automatisch das …
10
nginx