当前位置:主页 > 服务器 > Nginx >

nginx支持tcp转发的配置分享

时间:2021-11-14 10:25:10 | 栏目:Nginx | 点击:

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

-prefix=/usr/local/nginx ?Cwith-pcre=/home/soft/pcre-8.30 ?Cwith-openssl=/home/soft/openssl-1.0.2g ?Cadd-module=../nginx_tcp_proxy_module-master

如果安装中出现:

configure: error: zlib library not found

直接yum安装即可。

yum install zlib-devel;

配置如下:

  server {
    listen   2049;
 
    proxy_pass   my_server;
    access_log /home/logs/nginx/myserver.acc.log;
   
}

点击下载模块

您可能感兴趣的文章:

相关文章