nginx-1.20.2安装使用

一、安装编译工具及库文件

yum -y install make zlib zlib-devel gcc-c++ libtoolopenssl openssl-devel

二、下载nginx文件
wget http://nginx.org/download/nginx-1.20.2.tar.gz

三、安装pcre
pcre可以让nginx支持rewrite
从官网下载pcre: https://sourceforge.net/proje...
编译安装:
./configure --prefix=/usr/local/pcre make && make install

【nginx-1.20.2安装使用】查看pcre的版本:
pcre-config --version

四、安装nginx
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/home/app/pcre-8.35

-- 注意:--with-pcre参数存放的是pcre的解压后的源码位置,不是编译安装后的程序位置
启动nginx
cd /usr/local/nginx/sbin ./nginx

访问页面:
nginx-1.20.2安装使用
文章图片

默认的配置文件开放的是80端口

    推荐阅读