ApachePAMunixAuth: Difference between revisions

From DrewWiki
Jump to navigation Jump to search
(Created page with "<pre># yum install mod_auth_pam.x86_64 mod_auth_shadow.x86</pre> http://pam.sourceforge.net/mod_auth_pam/shadow.html Add to <Directory> or <Location> <pre> AuthPAM_Enabled o...")
(No difference)

Revision as of 19:48, 27 July 2011

# yum install mod_auth_pam.x86_64 mod_auth_shadow.x86

http://pam.sourceforge.net/mod_auth_pam/shadow.html

Add to <Directory> or <Location>

    AuthPAM_Enabled on
    AuthShadow on
    AuthType "basic"
    AuthName "Auth"
    require user drew
    #require group blabla
chmod 444 /etc/passwd

(orig 000)

---> Find safe work around