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; } }
posted @ 2018-12-14 10:41  dream_fly_info  阅读(2729)  评论(0编辑  收藏  举报