• Stars
    star
    107
  • Rank 316,014 (Top 7 %)
  • Language
    C
  • Created almost 13 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

limit the total speed from the specific user
= Synopsis =
This module makes it possible to limit the total speed of simultaneous 
connections for the assigned session or as a special case, from one address.

Example configuration
<geshi lang="nginx">
http {
    limit_speed_zone   one  $binary_remote_addr  10m;

    server {
        location /download/ {
            limit_speed   one  100k;
        }
    }
}
</geshi>

= Directives =
== limit_speed_zone ==
'''syntax:''' ''limit_speed_zone zone_name $variable memory_max_size''

'''default:''' ''no''

'''context:''' ''http''

Directive describes the zone, in which the session states are stored.<BR>
The numbers of sessions is determined by the assigned variable, it depends on
the size of the used Variable and '''memory_max_size''' value.

Example of the use:

<geshi lang="nginx">
limit_speed_zone one $binary_remote_addr 10m;
</geshi>

The address of client is used as the session.
Notice that the variable <code>$binary_remote_addr</code> is used instead of 
<code>$remote_addr</code>.

The length of the values of the variable of <code>$remote_addr</code> can be 
from 7 to 15 bytes; therefore size state is equal to 32 or 64 bytes.

Length of all values of the variable of <code>$binary_remote_addr</code> is 
always 4 bytes and the size of the state is always 32 bytes.

When the zone size is 1M then it is possible to handle 32000 sessions with 
32 bytes/session.

== limit_speed ==

'''syntax:''' ''limit_speed zone_name max_speed''

'''default:''' ''no''

'''context:''' ''http, server, location''

Directive assigns the sum of maximum speed from the same IP address. For 
example, if you limit the total speed to 100KB per IP address and there
are 10 concurrent connections from the same IP, each connection speed 
is 10KB(100KB/10).

= License =

This code is published under the BSD license.

Copyright (C) 2011 by Weibin Yao <[email protected]>.

This README template is from nginx_limit_zone_module
(http://wiki.nginx.org/HttpLimitZoneModule).

I borrowed a lot of codes from limit_zone module of Nginx. This part of
code is copyrighted by Igor Sysoev. Thanks for his hard work.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

*   Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.

*   Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

More Repositories

1

nginx_tcp_proxy_module

add the feature of tcp proxy with nginx, with health check and status monitor
C
1,641
star
2

ngx_http_substitutions_filter_module

a filter module which can do both regular expression and fixed string substitutions for nginx
Perl
602
star
3

nginx_ajp_module

support AJP protocol proxy with Nginx
Perl
244
star
4

nginx_syslog_patch

add the full syslog feature to Nginx
Perl
132
star
5

nginx_limit_access_module

support to deny specific variable with HTTP POST interface
Perl
70
star
6

nginx_http_recaptcha_module

support google's reCAPTCHA with Nginx
Perl
54
star
7

nginx_http_oauth_module

support oauth client with nginx
Perl
32
star
8

captcha_server

captcha_server
Java
26
star
9

nginx_secure_cookie_module

add the secure cookie
Perl
23
star
10

nginx_cross_origin_module

add the support for cross-origin resource sharing protocol: http://www.w3.org/TR/cors/
Perl
21
star
11

aho_corasick_state_machine

Use Aho-Corasick state machine to string matching(C language, under BSD License)
C
18
star
12

nginx_upstream_keepalive_patch

Patch for upstream HTTP protocol keepalive
Perl
17
star
13

nginx-sticky-module

clone from http://code.google.com/p/nginx-sticky-module/
C
15
star
14

mod_tcache

Memory cache module for Nginx
C
13
star
15

nginx_session_store_module

add the session support for Nginx
C
8
star
16

parse_domain

parse the domain and get the Top Level Domain
C
6
star
17

nginx_http_redis_module

fork from nginx_http_redis_module_0.3.4
C
5
star
18

squid_gzip

add the gzip feature to squid-2.7 on the fly
Perl
4
star
19

chinese_text_filter

Process the Chinese text stuff
Ruby
3
star
20

mguesser

language detection, fork from http://www.mnogosearch.org/guesser/
C
3
star
21

regex_test

test the performance and feature with some regex librarys
2
star
22

libcharguess

clone from http://sourceforge.net/projects/libcharguess/
C
2
star
23

zh_conversion

map between traditional and simplified words
Ruby
2
star
24

nginx_if_contain_patch

This a patch for our private use.
2
star
25

super_http_benchmark_test

a more stress and simple HTTP test tool
C
1
star
26

ruby_example

private ruby experimental examples
C
1
star
27

yaoweibin.ruhoh.com

a blog
Ruby
1
star
28

test

test
Vim Script
1
star
29

yaoweibin_html5_slides

yaoweibin html5 slides (steal from http://code.google.com/p/html5slides/)
JavaScript
1
star
30

yaoweibin.github.com

My homepage
1
star
31

statistic_game

statistic_game
Ruby
1
star