-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig
More file actions
48 lines (43 loc) · 1.37 KB
/
config
File metadata and controls
48 lines (43 loc) · 1.37 KB
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
ngx_addon_name=ngx_http_oidc_module
# --- submodule: nxe-json ---
nxe_json_dir="$ngx_addon_dir/nxe-json"
if [ ! -f "$nxe_json_dir/config.ngx" ]; then
echo "$0: error: $nxe_json_dir/config.ngx not found" >&2
exit 1
fi
. "$nxe_json_dir/config.ngx"
# --- module definition ---
ngx_module_type=HTTP
ngx_module_name="ngx_http_oidc_module"
ngx_module_deps="$nxe_json_module_deps"
ngx_module_incs="\
$nxe_json_module_incs \
$ngx_addon_dir/src \
"
ngx_module_srcs="\
$nxe_json_module_srcs \
$ngx_addon_dir/src/ngx_http_oidc_module.c \
$ngx_addon_dir/src/ngx_oidc_handler_authenticate.c \
$ngx_addon_dir/src/ngx_oidc_handler_callback.c \
$ngx_addon_dir/src/ngx_oidc_handler_logout.c \
$ngx_addon_dir/src/ngx_oidc_handler_status.c \
$ngx_addon_dir/src/ngx_oidc_hash.c \
$ngx_addon_dir/src/ngx_oidc_http.c \
$ngx_addon_dir/src/ngx_oidc_jwks.c \
$ngx_addon_dir/src/ngx_oidc_jwt.c \
$ngx_addon_dir/src/ngx_oidc_metadata.c \
$ngx_addon_dir/src/ngx_oidc_provider.c \
$ngx_addon_dir/src/ngx_oidc_random.c \
$ngx_addon_dir/src/ngx_oidc_session.c \
$ngx_addon_dir/src/ngx_oidc_session_store.c \
$ngx_addon_dir/src/ngx_oidc_session_store_memory.c \
$ngx_addon_dir/src/ngx_oidc_session_store_redis.c \
$ngx_addon_dir/src/ngx_oidc_url.c \
$ngx_addon_dir/src/ngx_oidc_variable.c \
"
ngx_module_libs="\
$nxe_json_module_libs \
-lcrypto \
-lhiredis \
"
. auto/module