我是靠谱客的博主 专一电话,最近开发中收集的这篇文章主要介绍nginx使用4层模式(tcp)ip透传到应用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1,nginx编译安装时要加上stream模块里的--with-stream --with-stream_realip_module,第一个用来四层负载,第二个用来获得客户端真实IP地址

[root@localhost ~]# nginx -V
nginx version: nginx/1.14.0
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-18) (GCC) 
built with OpenSSL 1.0.2o  27 Mar 2018
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --user=www --group=www --with-stream --with-stream_realip_module --with-http_stub_status_module --with-http_v2_module --with-http_ssl_module --with-http_gzip_static_module --with-http_realip_module --with-http_flv_module --with-http_mp4_module --with-openssl=../openssl-1.0.2o --with-pcre=../pcre-8.42 --with-pcre-jit --with-ld-opt=-ljemalloc --add-module=./nginx_upstream_check_module-master
 

2,Nginx加入主配置文件4层的配置nginx.conf

stream {
    log_format proxy '$remote_addr [$time_local] '
                     '$protocol $status $bytes_sent $bytes_received '
                     '$session_time "$upstream_addr" '
                     '"$upstream_bytes_sent" "$upstream_bytes_received" "$upstream_connect_time"';

    include vhost/*.stream;
}
 

3,具体配置文件的写法

upstream test9001 {
        server 192.168.0.1:9001 weight=1 max_fails=3 fail_timeout=30s;   #负载
    }
server {
        listen 9001;   #监听端口
        set_real_ip_from 10.3.0.0/24;    #上一层代理IP地址
        proxy_protocol on;   #打开代理协议
        proxy_pass test9001;
        proxy_connect_timeout 600;
        access_log /data/wwwlogs/test.log proxy;
        error_log /data/wwwlogs/test.error.log error;
       }

最后

以上就是专一电话为你收集整理的nginx使用4层模式(tcp)ip透传到应用的全部内容,希望文章能够帮你解决nginx使用4层模式(tcp)ip透传到应用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部