mirror of
https://github.com/simon987/ngx_http_js_challenge_module.git
synced 2025-04-04 06:52:58 +00:00
21 lines
490 B
Bash
Executable File
21 lines
490 B
Bash
Executable File
NGINX_PATH=/home/simon/Downloads/nginx-1.16.1/
|
|
|
|
MODULE_PATH=$(pwd)/
|
|
CONFIG_ARGS=$(nginx -V 2>&1 | tail -n 1 | cut -c 21- | sed 's/--add-dynamic-module=.*//g')
|
|
|
|
CONFIG_ARGS="${CONFIG_ARGS} --add-dynamic-module=${MODULE_PATH}"
|
|
|
|
echo $CONFIG_ARGS
|
|
|
|
(
|
|
cd ${NGINX_PATH}
|
|
#bash -c "./configure ${CONFIG_ARGS}"
|
|
make modules
|
|
#cp objs/ "${WD}"
|
|
)
|
|
|
|
rm /test/*.so
|
|
mv /home/simon/Downloads/nginx-1.16.1/objs/ngx_http_js_challenge_module.so /test/module.so
|
|
chown -R www-data /test/
|
|
systemctl restart nginx
|