centos7安装nginx
Posted cerofang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7安装nginx相关的知识,希望对你有一定的参考价值。
https://nginx.org/download/
nginx-1.12.0.tar.gz为实例
yum -y install gcc gcc-c++ openssl-devel pcre-devel httpd-tools
tar -zxf nginx-1.12.0.tar.gz
cd nginx-1.12.0
useradd nginx
./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_mp4_module --with-http_flv_module
make && make install
ln -s /usr/local/nginx/sbin/nginx /usr/bin
nginx
vi /etc/rc.local
chmod 755 /etc/rc.local
nginx -s quit
以上是关于centos7安装nginx的主要内容,如果未能解决你的问题,请参考以下文章