github github
  • Pricing and Signup
  • Explore GitHub
  • Features
  • Blog
  • Login

agentzh / set-misc-nginx-module

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
    • 31
    • 2
  • Source
  • Commits
  • Network
  • Pull Requests (0)
  • Issues (0)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Switch Branches (2)
    • devel
    • master ✓
  • Switch Tags (27)
    • v0.21rc3
    • v0.21rc2
    • v0.21rc1
    • v0.21
    • v0.20rc2
    • v0.20rc1
    • v0.20
    • v0.19
    • v0.18
    • v0.17
    • v0.16
    • v0.15
    • v0.14
    • v0.13
    • v0.12
    • v0.11
    • v0.10
    • v0.09
    • v0.08rc1
    • v0.08
    • v0.07
    • v0.06
    • v0.05
    • v0.04
    • v0.03
    • v0.02
    • v0.01
  • Branch List
Sending Request…
Downloads

Various set_xxx directives added to nginx's rewrite module (md5/sha1, sql/json quoting, and many more) — Read more

  Cancel

  Cancel
  • HTTP
  • Git Read-Only

This URL has Read+Write access

set-misc-nginx-module /

Dismiss Octotip: You've activated the file finder by pressing t Start typing to filter the file list. Use ↑ and ↓ to navigate, enter to view files.

 name
No matching files

Jump to Line

confirmed that we work with 1.0.2. 
agentzh (author)
Wed May 11 03:49:09 -0700 2011
commit  13faacda4bfb7611b4c6
tree    8d51dd07a468275bffa5
parent  5dd1f1ab2164b3824989
set-misc-nginx-module /
name age
history
message
directory src/ Tue Feb 15 20:12:50 -0800 2011 applied the patch from Marcus Clyne to fix the ngi... [agentzh]
directory t/ Mon Mar 07 18:58:49 -0800 2011 minor tweaks. [agentzh]
directory util/ Wed May 11 03:49:09 -0700 2011 confirmed that we work with 1.0.2. [agentzh]
file .gitignore Wed May 11 03:24:55 -0700 2011 updated .gitignore. [agentzh]
file README Wed May 11 03:49:09 -0700 2011 confirmed that we work with 1.0.2. [agentzh]
file config Thu Feb 10 06:01:36 -0800 2011 implemented hex and base64 en/decoding [dobe]
file valgrind.suppress Wed Jan 26 03:40:50 -0800 2011 we no longer bundle Test::Nginx. [agentzh]


README
Name
    ngx_set_misc - more rewrite set commands

    *This module is not distributed with the Nginx source.* See the
    installation instructions.

Status
    This module is production ready.

Synopsis

    location /foo {
        set $a $arg_a;
        set_if_empty $a 56;

        # GET /foo?a=32 will yield $a == 32
        # while GET /foo and GET /foo?a= will
        # yeild $a == 56 here.
    }

    location /bar {
        set $foo "hello\n\n'\"\\";
        set_quote_sql_str $foo $foo; # for mysql

        # OR in-place editing:
        #   set_quote_sql_str $foo;

        # now $foo is: 'hello\n\n\'\"\\'
    }

    location /bar {
        set $foo "hello\n\n'\"\\";
        set_quote_pgsql_str $foo;  # for PostgreSQL

        # now $foo is: E'hello\n\n\'\"\\'
    }

    location /json {
        set $foo "hello\n\n'\"\\";
        set_quote_json_str $foo $foo;

        # OR in-place editing:
        #   set_quote_json_str $foo;

        # now $foo is: "hello\n\n'\"\\"
    }

    location /baz {
        set $foo "hello%20world";
        set_unescape_uri $foo $foo;

        # OR in-place editing:
        #   set_quote_sql_str $foo;

        # now $foo is: hello world
    }

    upstream_list universe moon sun earth;
    upstream moon { ... }
    upstream sun { ... }
    upstream earth { ... }
    location /foo {
        set_hashed_upstream $backend universe $arg_id;
        drizzle_pass $backend; # used with ngx_drizzle
    }

    location /base32 {
        set $a 'abcde';
        set_encode_base32 $a;
        set_decode_base32 $b $a;

        # now $a == 'c5h66p35' and
        # $b == 'abcde'
    }

    location /base64 {
        set $a 'abcde';
        set_encode_base64 $a;
        set_decode_base64 $b $a;

        # now $a == 'YWJjZGU=' and
        # $b == 'abcde'
    }

    location /hex {
        set $a 'abcde';
        set_encode_hex $a;
        set_decode_hex $b $a;

        # now $a == '6162636465' and
        # $b == 'abcde'
    }

    # GET /sha1 yields the output
    #   aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
    location /sha1 {
        set_sha1 $a hello;
        echo $a;
    }

    # ditto
    location /sha1 {
        set $a hello;
        set_sha1 $a;
        echo $a;
    }

    # GET /today yields the date of today in local time using format 'yyyy-mm-dd'
    location /today {
        set_local_today $today;
        echo $today;
    }

    # GET /signature yields the hmac-sha-1 signature
    # given a secret and a string to sign
    # this example yields the base64 encoded singature which is
    # "HkADYytcoQQzqbjQX33k/ZBB/DQ="
    location /signature {
        set $secret_key 'secret-key';
        set $string_to_sign "some-string-to-sign";
        set_hmac_sha1 $signature $secret_key $string_to_sign;
        set_encode_base64 $signature $signature;
        echo $signature;
    }

Description
  Every directive provided by this module can be
  mixed freely with other nginx rewrite module's
  directives, like "if" and "set". (Thanks to NDK!)

Directives
  set_if_empty

  set_quote_sql_str (can be used with ngx_array module's array_map_op)

  set_quote_pgsql_str (can be used with ngx_array module's array_map_op)


  set_quote_json_str (can be used with ngx_array module's array_map_op)

  set_unescape_uri (can be used with ngx_array module's array_map_op)

  set_escape_uri (can be used with ngx_array module's array_map_op)

  set_hashed_upstream

  set_encode_base32 (can be used with ngx_array module's array_map_op)

      RFC forces the [A-Z2-7] RFC-3548 compliant encoding, but we're using the
      "base32hex" encoding [0-9a-v].

  set_decode_base32 (can be used with ngx_array module's array_map_op)

      RFC forces the [A-Z2-7] RFC-3548 compliant encoding, but we're using the
      "base32hex" encoding [0-9a-v].

  set_encode_base64

  set_decode_base64

  set_encode_hex

  set_decode_hex

  set_sha1 (can be used with ngx_array module's array_map_op)

  set_md5 (can be used with ngx_array module's array_map_op and ngx_lua's ndk.set_var)

  set_local_today

  set_hmac_sha1 (only enabled when nginx uses openssl, as with ssl support)


Caveats
    Do not use $arg_XXX or $http_XXX or other special variables defined in
    the nginx core module as the target variable in this module's directives.
    For instance,

        set_if_empty $arg_user 'foo';  # DO NOT USE THIS!

    will lead to data corruption.

Installation
    1. Grab the nginx source code from nginx.net (<http://nginx.net/ >), for
        example, the version 0.8.54 (see nginx compatibility),

    2. Grab the NDK module from GitHub:
        http://github.com/simpl/ngx_devel_kit

    3. and then build the source with this module:

        $ wget 'http://sysoev.ru/nginx/nginx-0.8.54.tar.gz'
        $ tar -xzvf nginx-0.8.54.tar.gz
        $ cd nginx-0.8.54/

        # Here we assume you would install you nginx under /opt/nginx/.
        $ ./configure --prefix=/opt/nginx \
            --add-module=/path/to/ngx_devel_kit \
            --add-module=/path/to/set-misc-nginx-module

        $ make -j2
        $ make install

    Download the latest version of the release tarball of this module from
    set-misc-nginx-module file list
    (<http://github.com/agentzh/set-misc-nginx-module/downloads >).

Compatibility
    The following versions of Nginx should work with this module:

    *   1.0.x (last tested: 1.0.2)

    *   0.9.x (last tested: 0.9.4)

    *   0.8.x (last tested: 0.8.54)

    *   0.7.x >= 0.7.46 (last tested: 0.7.68)

    Earlier versions of Nginx like 0.6.x and 0.5.x will *not* work.

    If you find that any particular version of Nginx above 0.7.44 does not
    work with this module, please consider reporting a bug.

Report Bugs
    Although a lot of effort has been put into testing and code tuning,
    there must be some serious bugs lurking somewhere in this module. So
    whenever you are bitten by any quirks, please don't hesitate to

    1.  send a bug report or even patches to <[email protected]>,

    2.  or create a ticket on the issue tracking interface
        (<http://github.com/agentzh/set-misc-nginx-module/issues >)
        provided by GitHub.

Source Repository
    Available on github at agentzh/set-misc-nginx-module
    (<http://github.com/agentzh/set-misc-nginx-module >).

ChangeLog

Test Suite
    This module comes with a Perl-driven test suite. The test cases
    (<http://github.com/agentzh/set-misc-nginx-module/tree/master/test/t/ >)
    are declarative
    (<http://github.com/agentzh/set-misc-nginx-module/blob/master/test/t/sanity.t >
    ) too. Thanks to the Test::Base
    (<http://search.cpan.org/perldoc?Test::Base >) module in the Perl world.

    To run it on your side:

        $ cd test
        $ PATH=/path/to/your/nginx-with-set-misc-module:$PATH prove -r t

    You need to terminate any Nginx processes before running the test suite
    if you have changed the Nginx server binary.

    Test::Nginx (<http://search.cpan.org/perldoc?Test::Nginx >) is used by
    the test scaffold.

    Because a single nginx server (by default, "localhost:1984") is used
    across all the test scripts (".t" files), it's meaningless to run the
    test suite in parallel by specifying "-jN" when invoking the "prove"
    utility.

    Some parts of the test suite requires modules rewrite, and echo
    to be enabled as well when building Nginx.

TODO

Getting involved
    You'll be very welcomed to submit patches to the author or just ask for
    a commit bit to the source repository on GitHub.

Author
    agentzh (章亦春) *<[email protected]>*

Copyright & License
    Copyright (c) 2010, Taobao Inc., Alibaba Group ( http://www.taobao.com
    ).

    Copyright (c) 2009, agentzh <[email protected]>.

    This module is licensed under the terms of the BSD license.

    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.

See Also
    NDK: http://github.com/simpl/ngx_devel_kit

Dedicated Server Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
  • Blog
  • Support
  • Training
  • Job Board
  • Shop
  • Contact
  • API
  • Status
  • © 2011 GitHub Inc. All rights reserved.
  • Terms of Service
  • Privacy
  • Security

Keyboard Shortcuts (see all)

Site wide shortcuts

s
Focus site search
?
Bring up this help dialog

Commit list

j
Move selected down
k
Move selected up
t
Open tree
p
Open parent
c or o or enter
Open commit
y
Expand URL to its canonical form

Pull request list

j
Move selected down
k
Move selected up
o or enter
Open issue

Issues

j
Move selected down
k
Move selected up
x
Toggle select target
o or enter
Open issue
I
Mark selected as read
U
Mark selected as unread
e
Close selected
y
Remove selected from view
c
Create issue
l
Create label
i
Back to inbox
u
Back to issues
/
Focus issues search

Network Graph

← or h
Scroll left
→ or l
Scroll right
↑ or k
Scroll up
↓ or j
Scroll down
t
Toggle visibility of head labels
shift ← or shift h
Scroll all the way left
shift → or shift l
Scroll all the way right
shift ↑ or shift k
Scroll all the way up
shift ↓ or shift j
Scroll all the way down

Source Code Browsing

t
Activates the file finder
l
Jump to line
y
Expand URL to its canonical form