robbi5 / ngx_http_auth_crowd_module

Provides Crowd authentication for Nginx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nginx http auth crowd module

Configure and compile Nginx

$ ./configure --add-dynamic-module=../ngx_http_auth_crowd_module --with-debug --with-http_ssl_module
$ make modules

http://wiki.nginx.org/HttpSslModule https://www.nginx.com/resources/wiki/extending/converting/

Configuration example

server {
    location /restricted {
        auth_crowd              "Restricted Zone Realm";
        auth_crowd_url          "https://crowd.server.address.fi/crowd";
        auth_crowd_service      "crowd-authenticator-username";
        auth_crowd_password     "secret";
    }
}

Development

See get-started.sh for details.

Developer Links

About

Provides Crowd authentication for Nginx

License:Other


Languages

Language:C 91.2%Language:Shell 8.8%