Home > Back-end >  Apache reverse proxy uploading large files
Apache reverse proxy uploading large files

Time:10-18

Upload a file, around 100 million, the current phenomenon: upload a file, will ask the apache server, and then reverse proxy to 87, but the haven't forward requests to 87, and thrown to the following error, then the browser back 502, apache log is as follows:

[Fri Feb 28 17:09:01 2020] [info] [client 10.63.47.87] (32) Broken pipe: core_output_filter: writing data to the network
[error] [Fri Feb 28 17:09:01 2020] (103) Software under caused connection abort: proxy: pass the request body failed to 10.63.47.87:9790 (10.63.47.87)
[Fri Feb 28 17:09:01 2020] [error] proxy: pass the request body failed to 10.63.47.87:9790 (10.63.47.87) from 10.23.52.98

Application of container is spring shoes (sensitive words? , please help to see what reason, thank you!

The following methods are invalid:
1. Modify the apache configuration file, including setting agent timeout, set request_body receive timeout etc.
2. The interface test application Settings interface timeout, the session timeout

CodePudding user response:

EnableSendfile Off to try to try to shut it down
If not then refer to the following information
http://httpd.apache.org/docs/2.0/mod/core.html#enablesendfile

CodePudding user response:

references a 1/f, 3-yellow response:
EnableSendfile Off to try to try to shut it down
If not then refer to the following information
http://httpd.apache.org/docs/2.0/mod/core.html#enablesendfile

Thanks, set EnableMMAP EnableSendfile value is off these are tried before or not
  • Related