首页 > 解决方案 > 从 bash 脚本安装 nginx 模块不起作用

问题描述

我使用 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

有任何想法吗?

标签: linuxbashnginx

解决方案


\after将./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'

推荐阅读