summaryrefslogtreecommitdiffhomepage
path: root/src/core/nginx.h
blob: 61a6f50e0711688309cdc745520fba9edfa4b4e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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_NEW_PID_EXT  ".newbin"
#define NGINX_NEW_PID      NGINX_PID NGINX_NEW_PID_EXT

#define NGINX_VAR          "NGINX"

extern ngx_module_t        ngx_core_module;


#endif /* _NGINX_H_INCLUDED_ */