nginx支持tcp转发的配置分享

时间:2022-01-13 00:15:24

这个其实很简单,直接加一个模块就可以了,不过这个不自带,需要自己安装:

-prefix=/usr/local/nginx –with-pcre=/home/soft/pcre-8.30 –with-openssl=/home/soft/openssl-1.0.2g –add-module=../nginx_tcp_proxy_module-master

如果安装中出现:

configure: error: zlib library not found

直接yum安装即可。

yum install zlib-devel;

配置如下:

?
1
2
3
4
5
6
7
  server {
    listen   2049;
 
    proxy_pass   my_server;
    access_log /home/logs/nginx/myserver.acc.log;
   
}

点击下载模块

原文链接:http://www.mindg.cn/?p=2079