-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathconfig
52 lines (48 loc) · 3.03 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
ngx_addon_name=ngx_http_secure_token_filter_module
SEC_TOKEN_DEPS="$ngx_addon_dir/akamai/ngx_http_secure_token_akamai.h \
$ngx_addon_dir/akamai/ngx_http_secure_token_akamai_commands.h \
$ngx_addon_dir/broadpeak/ngx_http_secure_token_broadpeak.h \
$ngx_addon_dir/broadpeak/ngx_http_secure_token_broadpeak_commands.h \
$ngx_addon_dir/cdnvideo/ngx_http_secure_token_cdnvideo.h \
$ngx_addon_dir/cdnvideo/ngx_http_secure_token_cdnvideo_commands.h \
$ngx_addon_dir/chinacache/ngx_http_secure_token_chinacache.h \
$ngx_addon_dir/chinacache/ngx_http_secure_token_chinacache_commands.h \
$ngx_addon_dir/cht/ngx_http_secure_token_cht.h \
$ngx_addon_dir/cht/ngx_http_secure_token_cht_commands.h \
$ngx_addon_dir/cloudfront/ngx_http_secure_token_cloudfront.h \
$ngx_addon_dir/cloudfront/ngx_http_secure_token_cloudfront_commands.h \
$ngx_addon_dir/iijpta/ngx_http_secure_token_iijpta.h \
$ngx_addon_dir/iijpta/ngx_http_secure_token_iijpta_commands.h \
$ngx_addon_dir/ngx_http_secure_token_conf.h \
$ngx_addon_dir/ngx_http_secure_token_encrypt_uri.h \
$ngx_addon_dir/ngx_http_secure_token_filter_module.h \
$ngx_addon_dir/ngx_http_secure_token_m3u8.h \
$ngx_addon_dir/ngx_http_secure_token_processor_base.h \
$ngx_addon_dir/ngx_http_secure_token_utils.h \
$ngx_addon_dir/ngx_http_secure_token_xml.h \
"
SEC_TOKEN_SRCS="$ngx_addon_dir/akamai/ngx_http_secure_token_akamai.c \
$ngx_addon_dir/broadpeak/ngx_http_secure_token_broadpeak.c \
$ngx_addon_dir/cdnvideo/ngx_http_secure_token_cdnvideo.c \
$ngx_addon_dir/chinacache/ngx_http_secure_token_chinacache.c \
$ngx_addon_dir/cht/ngx_http_secure_token_cht.c \
$ngx_addon_dir/cloudfront/ngx_http_secure_token_cloudfront.c \
$ngx_addon_dir/iijpta/ngx_http_secure_token_iijpta.c \
$ngx_addon_dir/ngx_http_secure_token_encrypt_uri.c \
$ngx_addon_dir/ngx_http_secure_token_filter_module.c \
$ngx_addon_dir/ngx_http_secure_token_m3u8.c \
$ngx_addon_dir/ngx_http_secure_token_processor_base.c \
$ngx_addon_dir/ngx_http_secure_token_utils.c \
$ngx_addon_dir/ngx_http_secure_token_xml.c \
"
if [ -n "$ngx_module_link" ]; then
ngx_module_type=HTTP_AUX_FILTER
ngx_module_name=ngx_http_secure_token_filter_module
ngx_module_deps="$SEC_TOKEN_DEPS"
ngx_module_srcs="$SEC_TOKEN_SRCS"
. auto/module
else
HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES ngx_http_secure_token_filter_module"
NGX_ADDON_DEPS="$NGX_ADDON_DEPS $SEC_TOKEN_DEPS"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $SEC_TOKEN_SRCS"
fi