centos7安装nginx

2022/8/21 5:25:27

本文主要是介绍centos7安装nginx,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、解压

tar -zxvf nginx.tar.gz

2、进入解压后的文件

cd nginx

3、执行configure文件./configure

可能会有报错:

./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=path option.

yum安装依赖yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel

4、执行make命令

5、执行make install命令

make PREFIX=[路径] install 可以指定安装位置

6、执行whereis nginx命令



这篇关于centos7安装nginx的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程