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
I'm trying to use mod_auth_gssapi instead of mod_auth_kerb, to avoid seeing that awful login/password popup on Chrome/Edge, however even when the gssapi-no-negotiate variable is set, it's still displayed...
Here's my config
<Directory /var/www/site/>
[...]
<If "%{REQUEST_METHOD} == 'GET'">
BrowserMatch Windows gssapi-no-negotiate
AuthType GSSAPI
AuthName "Kerberos Login"
GssapiCredStore keytab:/path/to/my/file.keytab
GssapiBasicAuth Off
GssapiAllowedMech krb5
GssapiBasicAuthMech krb5
GssapiNegotiateOnce On
GssapiSSLonly On
GssapiLocalName On
GssapiUseSessions Off
Require valid-user
ErrorDocument 401 /?kerb=0
</If>
</Directory>
Many thanks in advance for your help !
The text was updated successfully, but these errors were encountered:
My bad, apt installed an old version of the module (1.4.x) , because debian's version was old too (Stretch). No more issues after manually building and using 1.6.3 😄
Hello there
I'm trying to use
mod_auth_gssapi
instead ofmod_auth_kerb
, to avoid seeing that awful login/password popup on Chrome/Edge, however even when thegssapi-no-negotiate
variable is set, it's still displayed...Here's my config
Many thanks in advance for your help !
The text was updated successfully, but these errors were encountered: