CentOS 7 LNMP部署—Nginx
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 LNMP部署—Nginx相关的知识,希望对你有一定的参考价值。
1,版本
nginx-1.14
2,创建用户
groupadd www && useradd www -g www
3,安装Nginx
wget http://nginx.org/download/nginx-1.14.0.tar.gz
安装依赖
yum -y install pcre-devel openssl openssl-devel wget gcc-c++
4.解压安装
mkdir /usr/local/nginx
tar -zxvf nginx-1.14.0.tar.gz && cd nginx-1.14.0
./configure --prefix=/usr/local/nginx/ --user=www --group=www
make && make install
echo ‘PATH="/usr/local/nginx/sbin:$PATH"‘>> /etc/profile;source /etc/profile
以上是关于CentOS 7 LNMP部署—Nginx的主要内容,如果未能解决你的问题,请参考以下文章