Nginx配置TCP请求转发

Reading time ~1 minute

1. 概述

通过Nginx对tcp连接进行请求转发.

2. 编译安装 Stream 组建

./configure --prefix=/usr/local/nginx --with-stream  --with-stream_ssl_module

3. 配置Nginx的配置文件conf/nginx.conf

stream {
    upstream proxy_card {
        # simple round-robin  转发IP和端口
        server 192.168.1.12:12340;
        server 192.168.1.13:12340;
        #check interval=3000 rise=2 fall=5 timeout=1000;
        #check interval=3000 rise=2 fall=5timeout=1000
        #check interval=3000 rise=2 fall=5timeout=1000
        #check_http_send "GET /HTTP/1.0\r\n\r\n";
        #check_http_expect_alive http_2xxhttp_3xx;
    }
    server {
        listen 12340; #监听端口
        proxy_pass proxy_card;  #转发请求
    }
}

4. 重启Nginx

./nginx -s stop
./nginx

转载请注明出处:
文章地址:Nginx配置TCP请求转发
文章作者:凌风
原始连接:https://lingfeng.me/blog/nginx/nginx-proxy-tcp/
许可协议:转载请注明原文链接及作者。

HomeBrew 安装及常用命令

HomeBrew 是 Mac OSX 上的软件包管理工具,能在 Mac 中方便的安装软件或者卸载软件, 使用命令,非常方便。 Continue reading