
cherokee at cherokee-project
Oct 22, 2009, 9:22 AM
Post #1 of 1
(108 views)
Permalink
|
|
[3745] cherokee/trunk/doc/modules_validators_pam.txt: Fixes issue 608: PAM troubleshooting info
|
|
Revision: 3745 http://svn.cherokee-project.com/changeset/3745 Author: taher Date: 2009-10-22 18:22:42 +0200 (Thu, 22 Oct 2009) Log Message: ----------- Fixes issue 608: PAM troubleshooting info Modified Paths: -------------- cherokee/trunk/doc/modules_validators_pam.txt Modified: cherokee/trunk/doc/modules_validators_pam.txt =================================================================== --- cherokee/trunk/doc/modules_validators_pam.txt 2009-10-22 15:58:16 UTC (rev 3744) +++ cherokee/trunk/doc/modules_validators_pam.txt 2009-10-22 16:22:42 UTC (rev 3745) @@ -28,3 +28,29 @@ directory. It will be available for all local users, unless a restriction list is provided. +[[notes]] +Notes +^^^^^ + +The PAM approach ensures a dynamic configuration for how the +authentication is performed. This dynamic configuration must be +specified. This means that a /etc/pam.d/cherokee file must define the +connection between Cherokee and the pluggable authentication modules +that perform the actual authentication tasks. + +Cherokee's installation procedure already takes care of the creation +of such file (under /etc or whatever system configuration directory is +used in your platform of choice). If you consistently fail to use the +PAM validator, make sure that such configuration deffinitions are set. + +.Sample: /etc/pam.d/cherokee +---- +# +# The PAM configuration file for Cherokee +# + +account required pam_unix.so +auth required pam_unix.so nullok +auth required pam_env.so +session required pam_unix.so +----
|