/Whydah-nginx-filter

Primary LanguageShellApache License 2.0Apache-2.0

Whydah-nginx-filter

Provides authentication in Nginx by integrating with Whydah

Useful when you need Whydah authentication in front of third-party applications.

Sample config:

http {
    server {
        listen       80;
        server_name  localhost;

        location / {
            root   html;
            index  index.html index.htm;

            whydah on;
            whydah_sso_login_webapp_url https://demo.getwhydah.com/sso/login;
            whydah_roles roleA roleB roleC;
        }
    }
}