编译安装nginx 1.12

Posted Els0n

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译安装nginx 1.12相关的知识,希望对你有一定的参考价值。

高版本nginx可支持四层代理,即tcp代理

官网下载解压后:

  1. apt install libssl-dev
  2. ./configure  --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-threads --with-stream --with-stream_ssl_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6  --with-cc-opt=‘-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic‘ --without-http_rewrite_module
  3. make && make install

四层代理:

upstream mysql{server: xxx:3306}

server {

  proxy_pass mysql;

}

以上是关于编译安装nginx 1.12的主要内容,如果未能解决你的问题,请参考以下文章

nginx编译安装时的参数

CentOS 7 搭建 LNMP 架构详细过程 + Discuz 论坛安装 (手工编译)

nginx 编译安装详解

怎么编译安装nginx1.8.1

Nginx编译安装及编译参数讲解

nginx编译安装服务启动脚本在哪