|
Home > Archive > Apache Server configuration support > February 2006 > SSPI with implicit identification?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
SSPI with implicit identification?
|
|
| sean.gilbertson@gmail.com 2006-02-17, 10:29 pm |
| Hi all,
Is there a way to use SSPI authentication with Apache, but just
automatically detect the user without having them submit their user
name and password? So for example, in Windows, the user is already
logged into the computer, so I'm hoping their user name is available
through SSPI automatically.
Okay, lemme know. Thanks!
- Sean
| |
| sean.gilbertson@gmail.com 2006-02-17, 10:29 pm |
| All,
I figured out how to do this. The key is to not prefer Basic
authentication:
<LocationMatch "/wherever">
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIOfferBasic On
#SSPIBasicPreferred On
SSPIDomain YOURDOMAIN
Require valid-user
</LocationMatch>
(If you're still having problems, try disabling Basic altogether, by
specifying the option: SSPIOfferBasic Off)
|
|
|
|
|