A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/nginx-clojure/nginx-access-plus below:

nginx-clojure/nginx-access-plus: nginx module allows limiting access to certain http request methods and client addresses.

Nginx-Access-Plus is a Nginx module allows limiting access to certain http request methods and client addresses.

#If nginx source is checked out from hg, please replace ./configure with auto/configure
$./configure \
    --add-module=nginx-access-plus/src/c
$ make
$ make install
Only Allow GET and HEAD Requests
location / {
    allow_method all get|head;
    deny_method  all all;
}
All GET|HEAD Requests But Deny All POST|DELETE Requests Except for 192.168.1.*
location / {
    allow_method all get|head;
    allow_method 192.168.1.0/24 post|delete;
    deny_method  all all;
}
Deny POST|PUT|DELETE Requests from 192.168.1.*
location / {
    deny_method  192.168.1.0/24 post|put|delete;
}

Copyright © 2015 Zhang, Yuexiang (xfeep) and released under the BSD 3-Clause license.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4