forked from weserv/rate-limit-nginx-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig
28 lines (24 loc) · 814 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
if [ -z "$ngx_module_link" ]; then
cat << END
$0: error: rate limit module requires recent version of NGINX (1.9.11+).
END
exit 1
fi
ngx_addon_name=ngx_http_rate_limit_module
ngx_module_type=HTTP
ngx_module_name=$ngx_addon_name
ngx_module_deps=" \
$ngx_addon_dir/src/ngx_http_rate_limit_module.h \
$ngx_addon_dir/src/ngx_http_rate_limit_handler.h \
$ngx_addon_dir/src/ngx_http_rate_limit_upstream.h \
$ngx_addon_dir/src/ngx_http_rate_limit_reply.h \
$ngx_addon_dir/src/ngx_http_rate_limit_util.h \
"
ngx_module_srcs=" \
$ngx_addon_dir/src/ngx_http_rate_limit_module.c \
$ngx_addon_dir/src/ngx_http_rate_limit_handler.c \
$ngx_addon_dir/src/ngx_http_rate_limit_upstream.c \
$ngx_addon_dir/src/ngx_http_rate_limit_reply.c \
$ngx_addon_dir/src/ngx_http_rate_limit_util.c \
"
. auto/module