Re: Using NGINX in non-fork mode

2015-04-13 Thread Igor Sysoev
On 14 Apr 2015, at 09:20, nitesh narayan lal wrote: > Hi, > > I am using a single worker process and master_process off in nginx.conf. > Now as per my understanding, the flow of operation would be something like: > NGiNX master process will be created which will spawn a single > worker_process

Using NGINX in non-fork mode

2015-04-13 Thread nitesh narayan lal
Hi, I am using a single worker process and master_process off in nginx.conf. Now as per my understanding, the flow of operation would be something like: NGiNX master process will be created which will spawn a single worker_process using fork and then master process gets killed. Is that correct ?