logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Third-party Modules View previous topic :: View next topic
Reply to topic   Topic: mod_auth_sspi and mod_ntlm
Author
anyhowput



Joined: 30 Jun 2015
Posts: 3
Location: Singapore

PostPosted: Mon 20 Jul '15 2:29    Post subject: mod_auth_sspi and mod_ntlm Reply with quote

Hi all,

May I know what is the difference between these two? Does these 2 modules support SSO?

I have managed to set up SSO with mod_auth_sspi on my Apache Version 2.2. But from what I read online, mod_auth_sspi will not work with Apache 2.4?

Instead, we have to use mod_ntlm for SSO with Apache 2.4. But will the configuration be the same?

Currently, this is my configuration on Apache 2.2 using mod_auth_sspi


Code:
<Directory "C:\Apache2.2\htdocs\wiki">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
AuthName "Logging in"
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIOfferBasic Off
SSPIOmitDomain On
Require valid-user
</Directory>


What do I need to change to make it work with Apache 2.4 using mod_auth_sspi or mod_ntlm?

Question 2: Will both of these 3rd party module works if my PHP is on apache2handler or cgi/fgci? Will it affect anything? Thanks!

Thanks for all advises! Appreciated[/code]
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7288
Location: Germany, Next to Hamburg

PostPosted: Mon 20 Jul '15 16:51    Post subject: Reply with quote

Answer in http://www.apachelounge.com/viewtopic.php?t=6661

please do not double post stuff.
Back to top
anyhowput



Joined: 30 Jun 2015
Posts: 3
Location: Singapore

PostPosted: Tue 21 Jul '15 4:15    Post subject: Reply with quote

Sorry, I didn't know I am double posting since I am asking 2 different questions.

But I appreciated your response and would like to further clarify my doubt

are mod_auth_sspi module and mod_auth_ntlm the same?
Is just that the former is for apache 2.2 and the latter is for apache 2.4? Correct me if I am wrong on this.

Also, what are the difference in configuration these 2? What changes must I made to my current configuration as posted earlier.

Thanks for your time and assistance!
Back to top
maba



Joined: 05 Feb 2012
Posts: 64
Location: Germany, Heilbronn

PostPosted: Wed 22 Jul '15 11:56    Post subject: Reply with quote

As James Blond pointed out, there is already some talk about this:

http://www.apachelounge.com/viewtopic.php?p=25073

https://github.com/YvesR/mod_authn_ntlm

In short, yes there is a solution for Apache 2.4.
You have to use mod_auth_ntlm in conjunction with mod_ldap.

Documentation has been provided by Yves on the github site:

https://github.com/YvesR/mod_authn_ntlm/blob/master/INSTALL.txt
Back to top


Reply to topic   Topic: mod_auth_sspi and mod_ntlm View previous topic :: View next topic
Post new topic   Forum Index -> Third-party Modules