繁体   English   中英

从 bash 脚本安装 nginx 模块不起作用

[英]installing nginx module from bash script doesn't work

我使用 Nginx v16.1.1,我想安装 modsecurity。

如果我从命令行运行下面列出的命令,ModSecurity 模块将作为已安装的模块出现在“nginx -V”中。

但是,如果我将脚本作为文件(例如 ./myscript.sh)执行,它不会按预期安装模块。

#!/bin/sh

# Download and Install libModSecurity
cd /opt/
git clone https://github.com/SpiderLabs/ModSecurity
cd ModSecurity
git checkout v3/master
sh build.sh
git submodule init
git submodule update
./configure

# Build libModSecurity
make && make install
make check

# Download the ModSecurity Nginx connector
cd /opt/
git clone https://github.com/SpiderLabs/ModSecurity-nginx.git

#########
# Nginx #
#########

echo "Installing Nginx..."

# Download latest stable version
NGINX_VER='nginx-1.16.1'
cd /opt/
echo "Downloading $NGINX_VER..."
wget http://nginx.org/download/$NGINX_VER.tar.gz
tar xvzf $NGINX_VER.tar.gz
cd $NGINX_VER

./configure --prefix=/usr/share/nginx \
--with-debug \
--add-module=/opt/ModSecurity-nginx \
--with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' \
--with-ld-opt=' -Wl,-E'

# Install
make && make install

# Check installed modules
nginx -V

有任何想法吗?

./configure之后的\\将阻止--with-debug被读取为命令,这可能是导致此问题的原因(如果您具有必要的权限)

./configure \
--with-debug \
--add-module=/opt/ModSecurity-nginx \
--with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' \
--with-ld-opt=' -Wl,-E'

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM