经验教程 Ningx 配置 tcp 端口转发 平常 Nginx 用得最多的也就是 http 反向代理,包含在 http 块中。 如果需要用到 tcp 端口转发,那么需要在 nginx.conf 文件夹中添加配置。 # 1. 直接转发 stream { server { listen 100; proxy_pass 192.168.1.1:2000; } } # 2. 负载均衡 stream { server { listen 100; pro…