-
Notifications
You must be signed in to change notification settings - Fork 21
/
config
28 lines (23 loc) · 981 Bytes
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ngx_module_type=HTTP
ngx_module_name=ngx_http_lua_kong_module
ngx_module_srcs=" \
$ngx_addon_dir/src/ngx_http_lua_kong_grpc.c \
$ngx_addon_dir/src/ngx_http_lua_kong_ssl.c \
$ngx_addon_dir/src/ngx_http_lua_kong_var_index.c \
$ngx_addon_dir/src/ngx_http_lua_kong_tag.c \
$ngx_addon_dir/src/ngx_http_lua_kong_module.c \
$ngx_addon_dir/src/ngx_http_lua_kong_log.c \
$ngx_addon_dir/src/ngx_http_lua_kong_log_handler.c \
$ngx_addon_dir/src/ngx_http_lua_kong_vars.c \
$ngx_addon_dir/src/ngx_http_lua_kong_peer_connection.c \
$ngx_addon_dir/src/ssl/ngx_lua_kong_ssl.c \
"
if [ -z "$NGX_LUA_LOC" ]; then
ngx_lua_loc="../ngx_lua-*"
else
ngx_lua_loc="$NGX_LUA_LOC"
fi
ngx_module_incs="$ngx_addon_dir/src $ngx_lua_loc/src"
. auto/module
ngx_addon_name=$ngx_module_name
have=NGX_HTTP_LUA_KONG . auto/have