nginx TCP 代理& windows傻瓜式安装
Posted 香巴拉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx TCP 代理& windows傻瓜式安装相关的知识,希望对你有一定的参考价值。
要放在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傻瓜式安装的主要内容,如果未能解决你的问题,请参考以下文章