Versions Compared

Key

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

...

In the Location directive for the authenticated olefs app, right after the ProxyPass lines, the RequestHeader is set.

Infocode
iconfalse
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
                  ProxyPassReverse http://oletest.lib.lehigh.edu:8443/
 
                  RequestHeader set Remote-User %{REMOTE_USER}s
</Location>