码迷,mamicode.com
首页 > Windows程序 > 详细

nginx TCP 代理& windows傻瓜式安装

时间:2020-06-05 21:22:13      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:lis   pass   port   nginx tcp   安装   code   http   remote   bsp   

要放在http之前

#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傻瓜式安装

标签:lis   pass   port   nginx tcp   安装   code   http   remote   bsp   

原文地址:https://www.cnblogs.com/luodengxiong/p/13052115.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!