nginx TCP 代理& windows傻瓜式安装
2021-03-02 12:28
标签:lis pass port nginx tcp 安装 code http remote bsp 要放在http之前 nginx TCP 代理& windows傻瓜式安装 标签:lis pass port nginx tcp 安装 code http remote bsp 原文地址:https://www.cnblogs.com/luodengxiong/p/13052115.html#tcp_proxy
stream {
upstream tcp_proxy{
hash $remote_addr consistent;
server 192.168.8.56:4809; #需代理的IP+PORT
}
server {
listen 4111;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass tcp_proxy;
}
}
文章标题:nginx TCP 代理& windows傻瓜式安装
文章链接:http://soscw.com/index.php/essay/59036.html