c6e3a63fdd
*) Bugfix: if a client sent too long header line, then the request information did not logged in the error log. *) Bugfix: the "Set-Cookie" header line was not transferred when the "X-Accel-Redirect" was used; the bug had appeared in 0.1.39. *) Bugfix: the "Content-Disposition" header line was not transferred when the "X-Accel-Redirect" was used. *) Bugfix: the master process did not close the listen socket on the SIGQUIT signal. *) Bugfix: after on-line upgrade on Linux and Solaris the process name became shorter in the "ps" command.
17 lines
244 B
C
17 lines
244 B
C
|
|
/*
|
|
* Copyright (C) Igor Sysoev
|
|
*/
|
|
|
|
|
|
#ifndef _NGINX_H_INCLUDED_
|
|
#define _NGINX_H_INCLUDED_
|
|
|
|
|
|
#define NGINX_VER "nginx/0.1.40"
|
|
|
|
#define NGINX_VAR "NGINX"
|
|
#define NGX_NEWPID_EXT ".newbin"
|
|
|
|
|
|
#endif /* _NGINX_H_INCLUDED_ */
|