Nginx配置socket转发TCP协议传输,记录一下

Posted 山塘小鱼儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx配置socket转发TCP协议传输,记录一下相关的知识,希望对你有一定的参考价值。

worker_processes  1;
events
    worker_connections  1024;

http
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    server
        listen       8080;
        server_name  localhost;
        location /
        root html;

       
        error_page   500 502 503 504  /50x.html;
        location = /50x.html
            root   html;
       
   

stream
        upstream socket
                hash $remote_addr consistent;
                server 127.0.0.1:15051 weight=1 ;
       
    server
      listen 8090;
      proxy_connect_timeout 100s;
      proxy_timeout 100s;
      proxy_pass socket;    
    

外部访问8090,nginx跳转到15051,nginx转发socket协议的配置写法,TCP协议传输

以上是关于Nginx配置socket转发TCP协议传输,记录一下的主要内容,如果未能解决你的问题,请参考以下文章

基于TCP协议的项目架构之Socket流传输的实现

11.负载均衡nginx

[网络] SOCKET, TCP/UDP, HTTP, FTP

TCP传输协议使用

TCP协议总结

两类传输协议:TCP,UDP