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

Latest commit

 

History

History
28 lines (24 loc) · 799 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 799 Bytes

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