You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 24, 2023. It is now read-only.
As described in the instructions, I have activated the middleware for SSO. However, this only works if I activate authentication for the entire site in Apache. Then the queries via GraphQL to Lighthouse PHP no longer work.
So I wanted to enable authentication for only one URL e.g. /auth. But then SSO no longer works.
Here is my config:
<LocationMatch "/auth">
AllowOverride None
AuthType GSSAPI
AuthName "xx.yy.zz"
GssapiBasicAuth On
GssapiCredStore keytab:/etc/kerberos.keytab
GssapiLocalName On
require valid-user
</LocationMatch>
The WWW-Authenticate parameter is included in the response and vary starts with "Authorization".
When I read the Auth::user() value in the route mentioned, it is empty.
Does anyone have a similar constellation and can tell me whether authentication with SSO is only possible via a single route?