Difference between revisions of "Configure Shibboleth Idp"

From MyWiki
Jump to: navigation, search
(Created page with "* use htpasswd generate a password file * add this into the Apache ssl.conf")
 
Line 1: Line 1:
 
* use htpasswd generate a password file
 
* use htpasswd generate a password file
 
* add this into the Apache ssl.conf
 
* add this into the Apache ssl.conf
 +
<source lang="text">
 +
<Location /idp/Authn/RemoteUser>
 +
    AuthType Basic
 +
    AuthName "Identity Provider Authentication"
 +
    AuthUserFile /opt/ssl/htpasswd
 +
    require valid-user
 +
</Location>
 +
</source>

Revision as of 12:08, 9 October 2015

  • use htpasswd generate a password file
  • add this into the Apache ssl.conf
<Location /idp/Authn/RemoteUser>
    AuthType Basic
    AuthName "Identity Provider Authentication"
    AuthUserFile /opt/ssl/htpasswd
    require valid-user
</Location>