Re: module which handles POST request help (Maxim Dounin)

2023-09-19 Thread Ben Mesander via nginx
Hi Maxim, Thank you for your helpful response! I have made (partial) changes to my code to reflect your comments. I better understand the phase mechanism now, thank you. > If you actually want to handle such requests yourself, > consider instead using a content handler. In a content handler >

Re: module which handles POST request help

2023-09-18 Thread Maxim Dounin
Hello! On Mon, Sep 18, 2023 at 09:27:36AM -0600, Ben Mesander via nginx wrote: > I'm working on an nginx module which will handle POST requests. I've never > written an nginx module before, but I have worked on apache modules. My > goal is to have it do unbuffered reads and process the data being

module which handles POST request help

2023-09-18 Thread Ben Mesander via nginx
I'm working on an nginx module which will handle POST requests. I've never written an nginx module before, but I have worked on apache modules. My goal is to have it do unbuffered reads and process the data being posted as it arrives. Initially, I'm doing just a simple blocking read of the POST bod