Hi Everyone,
In the documentation, there is a part said:
Directive: CASAuthNHeader
Default: None
Description: If enabled, this will store the user returned by CAS in an HTTP header
accessible to your web applications.
And this is the CAS configuration:
LoadModule auth_cas_module /usr/lib64/apache2/mod_auth_cas.so
CASSSOEnabled On
CASCookiePath /var/cache/apache2/mod_auth_cas/
CASDebug on
LogLevel debug
<Location / >
Authtype CAS
CASAuthNHeader cas_user
require valid-user
</Location>
but it doesn't look like I have an http header. At least by doing Inspect Element on my browser I cannot see it.
Any help would be appreciated.