Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleSample Location directive with LDAP
<Location /olefs>
                  Order Allow,Deny
                  Allow from all

                  AuthType Basic
                  AuthName #<To be filled>
                  AuthzLDAPAuthoritative  off
                  AuthLDAPURL             #<To be filled>
                  AuthBasicProvider       ldap file
                  AuthUserFile        /var/www/olehome/.htpasswd
                  require valid-user

                  ProxyPass http://oletest.lib.lehigh.edu:8443/olefs#<OLE Tomcat URL>
                  ProxyPassReverse http://oletest.lib.lehigh.edu:8443/#<OLE Tomcat URL>
 
                  RequestHeader set Remote-User %{REMOTE_USER}s
</Location>

...