Questions tagged [chunked]

20 questions
21
votes
4 answers

Enabling nginx Chunked Transfer Encoding

It looks like nginx 0.8.35 may support chunked transfer encoding: Changes with nginx 0.8.35 01 Apr 2010 *) Change: now the charset filter runs before the SSI filter. *) Feature: the…
rentzsch
  • 355
  • 1
  • 3
  • 6
7
votes
3 answers

Getting a chunked request through nginx

First some background: We have an embedded device that uploads a lot of small events to a web server. Chunked encoding is used to post this information. Every event is send as a seperate chunk, so the webserver (node.js) can react immediately to the…
Sunib
  • 73
  • 1
  • 1
  • 4
7
votes
4 answers

How can I disable Transfer-Encoding: chunked in Apache with HTTP/1.1 responses

I have a mod_include (SSI) page that is generating erronous output during chunked encoding when requested by a HTTP/1.1 browser. The page is output fine when requested by a HTTP/1.0 (because the output is not chunked). How can I tell Apache not to…
PP.
  • 3,246
  • 6
  • 26
  • 31
6
votes
2 answers

Content Length and Transfer Encoding Chunked nginx, node-http-proxy

I have the following setup - node-http-proxy acts as a reverse proxy forwarding all requests to nginx/socket.io as necessary My problem is this When I send a HTTP DELETE request from the browser, node-http-proxy adds a header "Transfer Encoding…
rampr
  • 448
  • 1
  • 4
  • 10
4
votes
1 answer

Nginx: disconnect when client sends chunked body exceeding desired size

In nginx there is the following directive client_max_body_size: Sets the maximum allowed size of the client request body, specified in the “Content-Length” request header field. If the size in a request exceeds the configured value, the 413…
user3175580
  • 151
  • 4
4
votes
1 answer

ERR_INCOMPLETE_CHUNKED_ENCODING when using AddOutputFilterByType in Apache reverse proxy

I'm trying to set up a Shopware site using Docker behind a Apache2 reverse proxy. Since the Shopware software for some reason puts its backend host "http://127.0.0.1:18084" into the JavaScript it sends to the browser, I tried to use mod_substitute…
Thomas Stets
  • 141
  • 1
  • 5
3
votes
1 answer

How to eliminate chunked response delay from NginX?

We have a cascade of two NginX reverse proxies in front of a Java web server. The first proxy runs on FreeBSD (11.1-RELEASE-p10) load balancers and proxies all internet traffic into the internal network. There are two such load balancers. They have…
3
votes
1 answer

Force chunked transfers when using gzip static on / sendfile in Nginx?

Nginx seems to disable chunking when sending files that are pre-compressed ala gzip_static on Is there any trick to force it to chunk anyway? Chunks seems to give some browsers the illusion of faster rendering because they might use the chunk point…
ck_
  • 429
  • 7
  • 19
3
votes
1 answer

Nginx not outputting correct chunked responses

I have a backend with expressjs making partial responses on some endpoints. the pseudocode is something like that: function (req, res, next) { res.writeHead(200, { 'Content-Type': 'application/json' }); request.a.file(function response…
Valerio
  • 151
  • 1
  • 6
1
vote
1 answer

Using Apache as a proxy with chunked encoding and digest authentication

I'm experiencing a strange problem. I'm using Apache as a proxy and submitting data using chunked encoding. The issue that when I try to use digest authentication in this configuration the proxy just hangs and eventually times out. The request never…
Cory
  • 381
  • 2
  • 5
  • 10
1
vote
1 answer

Recompilled Nginx 1.1.19 for chunked upload but still not working....

I can not get the chunked uploading to work. Even after recompiling Nginx. I am using nginx 1.1.19 on ubuntu 12.04. I downloaded the source code of nginx 1.1.19 and module for chunked uploading and compiled it as follows. ./configure…
ananthan
  • 1,490
  • 1
  • 17
  • 27
1
vote
3 answers

Enabling Chunked Uploading in Nginx

I have installed nginx,php-fpm,mysql from package manager on ubuntu 12.04, Nginx version - 1.1.19. How can we enable chunked uploading mode. Do we need to compile and install nginx for enabling Chunked Mode. Will compiling nginx needs compilng…
ananthan
  • 1,490
  • 1
  • 17
  • 27
1
vote
2 answers

Problem with "Transfer-Encoding: chunked" in Apache 2.2

One of client of our web service uses axis2 application that sends HTTP 1.1 query with: Transfer-Encoding: chunked header. Such a query is refused by our Apache 2.2 with message: 411 Length Required

Length…

Michał Niklas
  • 248
  • 1
  • 3
  • 10
1
vote
1 answer

Possible bug in Apache2

I just spent a solid 8 hours tracking this down and I still don't quite understand what's going on, so I'm hoping someone can explain this to me or confirm it is a bug so I can open a ticket with the Apache devs to let them know. I have an Ubuntu…
Eric
  • 21
  • 1
0
votes
1 answer

Chrome HTTP2 requests do not finish for large gzipped files (Apache)

I recently upgraded Aapche to 2.4.26 (ondrej ppa) on Ubuntu 16.04. By default, modules deflate and http2 are enabled. On Chrome, when serving large JS files, the request simply does not finish and fails with net::ERR_CONNECTION_CLOSED after a long…
light
  • 113
  • 6
1
2