CentOS7 之 安装 Nginx
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 之 安装 Nginx相关的知识,希望对你有一定的参考价值。
1、下载 Nginx下载地址:http://nginx.org/download/nginx-1.6.2.tar.gz
[root@localhost src]# cd /usr/local/src/
[root@localhost src]# wget?http://nginx.org/download/nginx-1.6.2.tar.gz
2、解压安装包
[root@localhost src]# tar zxvf nginx-1.6.2.tar.gz
3、进入安装包目录
[root@localhost src]# cd nginx-1.6.2
4、编译安装
[root@localhost nginx-1.6.2]# ./configure --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.40
[root@localhost nginx-1.6.2]#make
[root@localhost nginx-1.6.2]# make install
5、查看nginx版本
[root@localhost nginx-1.6.2]# /usr/local/webserver/nginx/sbin/nginx -v
nginx安装完成。
以上是关于CentOS7 之 安装 Nginx的主要内容,如果未能解决你的问题,请参考以下文章
3.LNPP源码搭建Zabbix5.0.3之CentOS7.6下源码安装nginx1.18
centos7 安装LNMP(php7)之 nginx php-fpm yum安装以及配置文件修改