nginx TCP 에이전트 구축

918 단어 nginx
1. 다운로드https://github.com/yaoweibin/nginx_tcp_proxy_module/archive/master.zip  
2, 설정 nginx 추가tcp_proxy_module-master 
patch -p1 < /path/to/nginx_tcp_proxy_module/tcp.patch    ./configure --prefix=/usr/local/nginx  --add-module=/home/samba/shb/rtmp/nginx_tcp_proxy_module-master
make 
make install
3. 설정 정보 추가
tcp {  
  
    upstream cluster {  
        # simple round-robin  
        server 127.0.0.1:9091;  
        server 172.0.0.1:9092;  
  
        check interval=3000 rise=2 fall=5 timeout=1000;  
  
        #check interval=3000 rise=2 fall=5 timeout=1000 type=ssl_hello;  
  
        #check interval=3000 rise=2 fall=5 timeout=1000 type=http;  
        #check_http_send "GET / HTTP/1.0\r
\r
"; #check_http_expect_alive http_2xx http_3xx; } server { listen 8888; proxy_pass cluster; } }

좋은 웹페이지 즐겨찾기