nginx源码编译安装

官网:http://nginx.org/
nginx源码编译安装_第1张图片
nginx源码编译安装_第2张图片

axel -n 20 -a http://nginx.org/download/nginx-1.18.0.tar.gz
tar zxvf nginx-1.18.0.tar.gz && cd nginx-1.18.0
yum install pcre pcre-devel\
			zlib zlib-devel\
			openssh openssh-devel\
			-y
 ./configure\
             --prefix=/usr/local/nginx\
             --with-http_stub_status_module\
             --with-http_ssl_module\
             --with-http_gzip_static_module
make && make install

nginx源码编译安装_第3张图片

./nginx # 启动
./nginx -s quit # 退出(推荐)
./nginx -s stop # 强制停止
./nginx -s reload # 重新加载配置文件
./nginx -t # 检查配置文件

nginx源码编译安装_第4张图片

你可能感兴趣的:(CentOS)