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 07:35:20 -06:00
#define NGINX_VER "nginx/0.0.3"
2004-03-16 01:10:12 -06:00
#define NGINX_CONF (u_char *) "nginx.conf"
2004-02-10 10:23:38 -06:00
#define NGINX_PID "nginx.pid"
2004-04-12 01:10:53 -05:00
#define NGINX_NEWPID_EXT ".newbin"
#define NGINX_NEWPID NGINX_PID NGINX_NEWPID_EXT
2004-03-09 13:47:07 -06:00
#define NGINX_VAR "NGINX"
2004-02-10 10:23:38 -06:00
extern ngx_module_t ngx_core_module;
2002-12-15 00:25:09 -06:00
#endif /* _NGINX_H_INCLUDED_ */