Nginx教程

nginx安装

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

官网下载:https://nginx.org/en/download.html
教程地址:https://www.runoob.com/linux/nginx-install-setup.html

服务器上进行下载
cd /home/fch/module/
wget https://nginx.org/download/nginx-1.16.1.tar.gz

ROOT用户:
一、安装编译工具及库文件
yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel

wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz

编译一下
--prefix:要安装的目录
--with-pcre:指定哪个pcre
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/root/pcre-8.35

/usr/sbin/groupadd www
/usr/sbin/useradd -g www www

启动命令:
./nginx

检查配置文件格式:
./nginx -t

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