nginx_limit_access_module

程序名称:nginx_limit_access_module

授权协议: BSD

操作系统: Linux

开发语言: C/C++

nginx_limit_access_module 介绍

Nginx_limit_access_module - 可通过指定的 HTTP POST 接口中的值来拒绝请求。

示例配置:

http {

    limit_access_zone  zone=one:5m bucket_number=10007 type=ip;

    server {
        listen       80;
        server_name  localhost;

        limit_access_variable zone=one $limit_access_deny;

        location / {
            root   html;
            index  index.html index.htm;

            if ($limit_access_deny) {
                return 403;
            }
        }

        location /limit_interface {
            allow   192.168.1.0/24;
            deny all;
            limit_access_interface zone=one;
        }
    }
}

nginx_limit_access_module 官网

https://github.com/yaoweibin/nginx_limit_access_module

相关编程语言

memcached-session-manager 将session存储到memchac...
Tomcat Native 这个项目可以让 Tomcat 使用 Apache ...
EasyTomcat 是一个用来帮助简化 Tomcat 和MySQL 管理...
riak-session-manager 是使用 Riak 来存储Tomcat se...
tomcat-redis-session-manager 是一个用来将 Tomcat...
这是一款在 Oracle 的 JDeveloper 开发环境下管理To...