summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_http_error.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-09-03HTTP: refactor: storing the body_handler as part of r.Alejandro Colomar1-2/+2
This will allow sending the header from a totally different point, since the data for the call is present in the request, which is available everywhere. It will also allow consulting in a filter if there is a body_handler installed. The gzip filter will need this, as it should be a no-op if there is no body handler installed. Signed-off-by: Alejandro Colomar <alx@nginx.com>
2019-11-14Initial proxy support.Igor Sysoev1-2/+2
2019-10-02Added response status code to error page body.Valentin Bartenev1-8/+10
Also the error page markup is now valid according to HTML5 specification. All optional tags were omitted.
2019-08-26Adding body handler to nxt_http_request_header_send().Igor Sysoev1-4/+2
2019-08-16Changing the sequence of body send execution.Max Romanov1-2/+4
Request state ready_handler required for further websocket events processing. It is not required for regular response transferring.
2019-01-18Testing correct value.Igor Sysoev1-1/+1
2018-09-18Fixed more typos.Valentin Bartenev1-1/+1
Thanks to 洪志道 (Hong Zhi Dao).
2018-06-25Introduced nxt_length() macro.Valentin Bartenev1-2/+2
2018-04-03HTTP: using r->mem_pool retention counter for response buffers.Igor Sysoev1-16/+13
2017-12-28HTTP keep-alive connections support.Igor Sysoev1-0/+105