nginx tcp代理并限制ip访问

2021/7/22 7:08:11

本文主要是介绍nginx tcp代理并限制ip访问,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Nginx 从1.9.0开始发布ngx_stream_core_module模块,该模块支持tcp代理及负载均衡。

本文记录一下用nginx实现zk的代理并限制指定ip可以访问

配置文件

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


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

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;
   #geo $remote_addr $geo {
    #    default 1;
     #   include    conf.d/whitelist.conf;
    #}

    include /etc/nginx/conf.d/*.conf;
}


stream{

       #allow 127.0.0.1;
       #deny all; #也可以写在文件里,用include导入

    include    conf.d/whitelist.conf;

    upstream zk{
        hash $remote_addr consistent;
        server  127.0.0.1:2181 max_fails=3 fail_timeout=10s;  
    }
    server{
        listen 8182;
        proxy_connect_timeout 20s;
        proxy_timeout 5m;
        proxy_pass zk;
    }
}

 



这篇关于nginx tcp代理并限制ip访问的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程