nginx 非socket代理配置

Posted 知_行

tags:

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

nginx反向代理socket配置

1,安装

git clone https://github.com/yaoweibin/nginx_tcp_proxy_module

cd nginx-1.8.1

patch -p1 < /root/to/nginx_tcp_proxy_module/tcp.patch

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_perl_module --add-module=/root/nginx_tcp_proxy_module

make && make install

2,配置

TCP是独立模块,不可在http模块中

events {
    worker_connections  1024;
}

tcp {
    upstream cluster{
    server x.x.x.x:x;
    check interval=3000 rise=2 fall=5 timeout=1000;
}

    server {
        listen       8181;
    proxy_pass cluster;
        }
}

http {
    include       mime.types;
    default_type  application/octet-stream;

重启nginx即可

END!

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

nginx websocket代理配置

nginx 作为 NodeJS+socket.io 的代理:客户端未收到通知

nginx能代理公网Ip非80端口吗

nginx 80端口代理无效 非80可用

nginx代理Socket程序 - 一招3分钟

nginx 作为 NodeJS+socket.io 的代理:除了大消息外一切正常