#!/bin/bash
#nginx auto-deploy script by xiaojie 2018-02-08
path=/usr/local/src
vers=1.14.0
user=nginx
yum install gcc gcc-c++ automake zlip zlib-devel pcre pcre-devel openssl wget openssl-devel -y
if [ $? -ne 0 ];then
echo "yum failed"
else
id $user &>/dev/null
[ $? -eq 0 ] && : || useradd $user -s /sbin/nologin -M
[ -d $path ] && : || mkdir -p $path
cd $path
[ -f nginx-${vers}.tar.gz ] && : || wget http://nginx.org/download/nginx-${vers}.tar.gz
if [ $? -ne 0 ];then
echo "download nginx false" && exit 1
else
tar xf nginx-$vers.tar.gz
cd $path/nginx-$vers
./configure --prefix=/usr/local/nginx-$vers --user=$user --group=$user --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-http_sub_module --with-pcre
make && make install
[ $? -eq 0 ] && echo "nginx install success" || echo "nginx install make error"
ln -sf /usr/local/nginx-$vers /usr/local/nginx
fi
fi
mkdir -p /usr/local/nginx/conf/extra
nginx一键编译脚本
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 实现环境 Centos 7 64位IP地址:172.16.0.20Nginx:1.12.0Mysql:5.7.18...