Below you will find pages that utilize the taxonomy term “nginx”
Posts
编译安装nginx-1.10.1
nginx nginx 1.8 不支持 tcp 转发 ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-http_ssl_module --with-pcre=../pcre-4.4 --with-zlib=../zlib-1.1.3 nginx 1.9 以后支持 tcp 转发 ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-http_ssl_module --with-pcre=../pcre-4.4 --with-zlib=../zlib-1.1.3 --with-stream --with-stream_ssl_module --with-http_slice_module 下载地址 https://nginx.org/en/download.html
文档地址 https://nginx.org/en/docs/
编译安装 nginx-1.10.1.tar.gz 环境准备 yum -y install gcc gcc-c++ autoconf automake libtool make yum -y install openssl openssl-devel 下载 nginx-1.10.1.tar.gz https://nginx.org/download/nginx-1.10.1.tar.gz
cd ~ wget https://nginx.org/download/nginx-1.10.1.tar.gz 下载 pcre-8.39 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.zip 下载 zlib-1.2.8 https://zlib.net/fossils/
wget https://zlib.net/fossils/zlib-1.2.8.tar.gz 解压 nginx pcre zlib tar -zxvf nginx-1.