Nginx配置udp/tcp代理

Posted dream_fly_info

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx配置udp/tcp代理相关的知识,希望对你有一定的参考价值。

 

#编译
./configure --prefix=/servyouapp/nginx  --with-stream  --with-http_stub_status_module

#nginx.conf部分配置 stream { upstream backend { server 10.7.2.86:1521; } server { listen 8686; proxy_connect_timeout 8s; proxy_timeout 24h;  #代理超时 proxy_pass backend; } }


以上是关于Nginx配置udp/tcp代理的主要内容,如果未能解决你的问题,请参考以下文章

Nginx反向代理websocket配置实例

Nginx反向代理实现负载均衡配置图解

Nginx专题:Nginx之反向代理及配置

nginx反向代理配置

Nginx简单的代理配置

Nginx配置websocket的反向代理