编译安装nginx
Posted Ray_chen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译安装nginx相关的知识,希望对你有一定的参考价值。
# 安装
version=1.16.0
yum install -y gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel autoconf automake make wget https://nginx.org/download/nginx-${version}.tar.gz tar -xf nginx-${version}.tar.gz cd nginx-${version} useradd -M -s /sbin/nologin nginx ./configure --prefix=/soft/nginx --user=nginx --group=nginx --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-http_ssl_module --with-stream make && make install
# 设置环境变量
vim /etc/profile.d/nginx.sh
export PATH=/soft/nginx/sbin:$PATH
source /etc/profile
# 查看nginx默认安装模块(在解压的二进制包目录下)
cat auto/options |grep "YES"
以上是关于编译安装nginx的主要内容,如果未能解决你的问题,请参考以下文章