Reputation: 93
I have multiple apps on Linux server. I want to use Window Authentication for login in apps. How can I do it using on Linux. I already Have connection with Active Directory. I just need current username of requested user for getting user profile from active directory.
Can I do it without deploying apps on IISNODE ??? I want on Linux. Is there any module available for that?
Upvotes: 0
Views: 1009
Reputation: 40928
You need to use either NTLM (simpler, but older and apparently less secure) or Kerberos (the new way and more secure, but a little more complicated to setup).
There is a Kerberos module for Node, but I have no experience with it: https://www.npmjs.com/package/kerberos
Search for "kerberos nodejs" and you should find more help.
I also found these walk-throughs to install modules on Apache to do it, in case they're helpful:
NTLM: http://modntlm.sourceforge.net/
Upvotes: 1