Skip to content
This repository has been archived by the owner on Feb 5, 2021. It is now read-only.

kare/ngx_http_auth_crowd_module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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