mirror of
https://github.com/nginx/nginx.git
synced 2024-12-15 21:39:00 +08:00
17 lines
393 B
C
17 lines
393 B
C
#ifndef _NGINX_H_INCLUDED_
|
|
#define _NGINX_H_INCLUDED_
|
|
|
|
|
|
#define NGINX_VER "nginx/0.0.3"
|
|
#define NGINX_CONF (u_char *) "nginx.conf"
|
|
#define NGINX_PID "nginx.pid"
|
|
#define NGINX_NEWPID_EXT ".newbin"
|
|
#define NGINX_NEWPID NGINX_PID NGINX_NEWPID_EXT
|
|
|
|
#define NGINX_VAR "NGINX"
|
|
|
|
extern ngx_module_t ngx_core_module;
|
|
|
|
|
|
#endif /* _NGINX_H_INCLUDED_ */
|