关于nginx:nginx1202安装使用

40次阅读

共计 527 个字符,预计需要花费 2 分钟才能阅读完成。

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

yum -y install make zlib zlib-devel gcc-c++ libtool  openssl 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

查看 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

拜访页面:

默认的配置文件凋谢的是 80 端口

正文完
 0