使用Nginx轉發tcp請求

要求nginx版本大於1.9,
在nginx.conf添加如下,要求和http{}同級nginx

stream {
    upstream cakehouse {
        server 172.17.210.101:10001 weight=5 max_fails=2 fail_timeout=30s ;
    }
    server {
        listen 8888;
        proxy_connect_timeout 10s;
        proxy_timeout 5s;
        proxy_pass cakehouse;
    }
}
相關文章
相關標籤/搜索