#编译 ./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; } }