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 edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<pre># yum install mod_auth_pam.x86_64 mod_auth_shadow.x86</pre>
<syntaxhighlight lang=bash>
$ sudo yum install mod_auth_pam.x86_64 mod_auth_shadow.x86
</syntaxhighlight>
http://pam.sourceforge.net/mod_auth_pam/shadow.html
http://pam.sourceforge.net/mod_auth_pam/shadow.html


Add to <Directory> or <Location>
Add to <Directory> or <Location>
<pre>
<syntaxhighlight lang=bash>
     AuthPAM_Enabled on
     AuthPAM_Enabled on
     AuthShadow on
     AuthShadow on
Line 9: Line 11:
     AuthName "Auth"
     AuthName "Auth"
     require user drew
     require user drew
     #require group blabla</pre>
     #require group blabla
</syntaxhighlight>


<pre>chmod 444 /etc/passwd</pre> (orig 000)
=Find safe work around=
---> Find safe work around
<syntaxhighlight lang=bash>
chmod 440 /etc/passwd
</syntaxhighlight>  
(orig 400)

Latest revision as of 02:50, 25 January 2018

$ sudo 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

Find safe work around

chmod 440 /etc/passwd

(orig 400)