nginx/src/core/nginx.h

17 lines
393 B
C
Raw Normal View History

#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_
2004-03-16 21:35:20 +08:00
#define NGINX_VER "nginx/0.0.3"
2004-03-16 15:10:12 +08:00
#define NGINX_CONF (u_char *) "nginx.conf"
2004-02-11 00:23:38 +08:00
#define NGINX_PID "nginx.pid"
2004-04-12 14:10:53 +08:00
#define NGINX_NEWPID_EXT ".newbin"
#define NGINX_NEWPID NGINX_PID NGINX_NEWPID_EXT
2004-03-10 03:47:07 +08:00
#define NGINX_VAR "NGINX"
2004-02-11 00:23:38 +08:00
extern ngx_module_t ngx_core_module;
2002-12-15 14:25:09 +08:00
#endif /* _NGINX_H_INCLUDED_ */