Es sieht aus wie nginx 0.8.35 may support chunked transfer encoding:Aktivieren nginx segmentierte Übertragungs Encoding
Änderungen mit nginx 0.8.35 01 Apr 2010
*) Change: now the charset filter runs before the SSI filter. *) Feature: the "chunked_transfer_encoding" directive.
Das ist großartig, weil ich versuche, Push git zu erhalten ändert sich über einen Nginx-Reverse-Proxy in einen git-http-Backend-Prozess. Git HTTP nutzt die Chunked-Transfer-Codierung for client-side efficiency reasons.
Allerdings kann ich es nicht zum Laufen bringen. Ich bin mit nginx 0.8.44 auf Debian Lenny mit dem folgenden configure Aufruf:
./configure \
--sbin-path=/usr/sbin \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--user=www-data \
--group=www-data \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--with-http_ssl_module \
--with-http_gzip_static_module \
--with-http_realip_module
Und die folgende conf-Datei:
server {
server_name example.com;
location/{
proxy_pass http://192.168.0.10;
include /etc/nginx/proxy.conf;
chunked_transfer_encoding on;
}
}
Und mein proxy.conf
sieht wie folgt aus:
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 100M;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;