some smaller documentation updates
This commit is contained in:
parent
4c6772d5af
commit
14b638b71b
|
@ -8,9 +8,14 @@ Installation Instructions for LAM
|
||||||
- Apache webserver (SSL optional) with installed PHP-Module (PHP-Module with
|
- Apache webserver (SSL optional) with installed PHP-Module (PHP-Module with
|
||||||
ldap, gettext, mcrypt+mhash optional)
|
ldap, gettext, mcrypt+mhash optional)
|
||||||
- Perl
|
- Perl
|
||||||
- Openldap (>2.0)
|
- OpenLDAP (>2.0)
|
||||||
- A web browser :-)
|
- A web browser :-)
|
||||||
|
|
||||||
|
MHash is only needed if you use PHP < 4.3 and want to use SHA or SSHA
|
||||||
|
for password hashes.
|
||||||
|
MCrypt will be used if available, otherwise Blowfish will be used
|
||||||
|
to store your LDAP password in the session file.
|
||||||
|
|
||||||
Getting mcrypt and mhash for Suse/RedHat:
|
Getting mcrypt and mhash for Suse/RedHat:
|
||||||
|
|
||||||
Either you compile PHP4 yourself or you use some unofficial packages:
|
Either you compile PHP4 yourself or you use some unofficial packages:
|
||||||
|
@ -22,23 +27,25 @@ Installation Instructions for LAM
|
||||||
2. Installation
|
2. Installation
|
||||||
|
|
||||||
* Extract package with:
|
* Extract package with:
|
||||||
tar xzf lam-version.tar.gz
|
tar xzf ldap-account-manager_<version>.tar.gz
|
||||||
|
|
||||||
* Copy files into the html-file scope of the webserver. For example
|
* Copy files into the html-file scope of the webserver. For example
|
||||||
/apache/htdocs.
|
/apache/htdocs.
|
||||||
|
|
||||||
* Set appropriate file permissions:
|
* Set appropriate file permissions:
|
||||||
- /lam/sess: write permission for apache user
|
- lam/sess: write permission for apache user
|
||||||
- /lam/tmp: write permission for apache user
|
- lam/tmp: write permission for apache user
|
||||||
- /lam/config (with subdirectories): write permission for apache user
|
- lam/config (with subdirectories): write permission for apache user
|
||||||
- /lam/lib: perl files must be set executable (See also
|
- lam/lib: perl files must be set executable (See also
|
||||||
docs/readme.lamdeamon.pl)
|
docs/readme.lamdeamon.txt)
|
||||||
|
|
||||||
* Configure config.cfg and create a configuration profile.
|
* Configure config.cfg and create a configuration profile.
|
||||||
Copy config.cfg_sample to config.cfg and set the master password and default
|
Copy config.cfg_sample to config.cfg and set the master password and default
|
||||||
profile.
|
profile.
|
||||||
Then use the web interface with the link "Configuration Login" (start file is /lam/index.html)
|
|
||||||
or configure LAM manually. (The default password to edit the options is "lam")
|
- With web browser:
|
||||||
|
Follow the link "Configuration Login" from the start page (lam/index.html).
|
||||||
|
(The default password to edit the options is "lam")
|
||||||
|
|
||||||
- Manually:
|
- Manually:
|
||||||
A default config file can be found in /lam/config/lam.conf_sample.
|
A default config file can be found in /lam/config/lam.conf_sample.
|
||||||
|
|
|
@ -60,19 +60,12 @@ LAM - Readme
|
||||||
Installation:
|
Installation:
|
||||||
Please see the INSTALL file.
|
Please see the INSTALL file.
|
||||||
|
|
||||||
Known Bugs:
|
|
||||||
- If you fill in the Unix workstations field the LDAP add/modify operation
|
|
||||||
may fail. This is because the host attribute is provided only by
|
|
||||||
objectClass account which conflicts with inetOrgPerson.
|
|
||||||
If you want to use host restrictions, add the host attribute to
|
|
||||||
inetOrgPerson in your schema file.
|
|
||||||
|
|
||||||
Documentation:
|
Documentation:
|
||||||
Basic documentation available in /docs
|
Basic documentation is available in the directory "docs".
|
||||||
|
|
||||||
Internationalization:
|
Internationalization:
|
||||||
If you want to use a translated version of LAM be sure to install the
|
If you want to use a translated version of LAM be sure to install the
|
||||||
needed locales. See locale/ for a list of supported locales.
|
needed locales. See locale/ for a list of supported locales and languages.
|
||||||
Debian users can add locales with "dpkg-reconfigure locales".
|
Debian users can add locales with "dpkg-reconfigure locales".
|
||||||
|
|
||||||
Security:
|
Security:
|
||||||
|
@ -81,7 +74,7 @@ LAM - Readme
|
||||||
LAM needs to store your LDAP username + password in the session. The session
|
LAM needs to store your LDAP username + password in the session. The session
|
||||||
files are saved in sess/ and are accessible only by the web server. To increase
|
files are saved in sess/ and are accessible only by the web server. To increase
|
||||||
security username and password are encrypted with MCrypt/AES or Blowfish.
|
security username and password are encrypted with MCrypt/AES or Blowfish.
|
||||||
The key and iv are generated at random when you log in. They are stored in two
|
The key and IV are generated at random when you log in. They are stored in two
|
||||||
cookies.
|
cookies.
|
||||||
|
|
||||||
|
|
||||||
|
|
25
lam/INSTALL
25
lam/INSTALL
|
@ -8,9 +8,14 @@ Installation Instructions for LAM
|
||||||
- Apache webserver (SSL optional) with installed PHP-Module (PHP-Module with
|
- Apache webserver (SSL optional) with installed PHP-Module (PHP-Module with
|
||||||
ldap, gettext, mcrypt+mhash optional)
|
ldap, gettext, mcrypt+mhash optional)
|
||||||
- Perl
|
- Perl
|
||||||
- Openldap (>2.0)
|
- OpenLDAP (>2.0)
|
||||||
- A web browser :-)
|
- A web browser :-)
|
||||||
|
|
||||||
|
MHash is only needed if you use PHP < 4.3 and want to use SHA or SSHA
|
||||||
|
for password hashes.
|
||||||
|
MCrypt will be used if available, otherwise Blowfish will be used
|
||||||
|
to store your LDAP password in the session file.
|
||||||
|
|
||||||
Getting mcrypt and mhash for Suse/RedHat:
|
Getting mcrypt and mhash for Suse/RedHat:
|
||||||
|
|
||||||
Either you compile PHP4 yourself or you use some unofficial packages:
|
Either you compile PHP4 yourself or you use some unofficial packages:
|
||||||
|
@ -22,23 +27,25 @@ Installation Instructions for LAM
|
||||||
2. Installation
|
2. Installation
|
||||||
|
|
||||||
* Extract package with:
|
* Extract package with:
|
||||||
tar xzf lam-version.tar.gz
|
tar xzf ldap-account-manager_<version>.tar.gz
|
||||||
|
|
||||||
* Copy files into the html-file scope of the webserver. For example
|
* Copy files into the html-file scope of the webserver. For example
|
||||||
/apache/htdocs.
|
/apache/htdocs.
|
||||||
|
|
||||||
* Set appropriate file permissions:
|
* Set appropriate file permissions:
|
||||||
- /lam/sess: write permission for apache user
|
- lam/sess: write permission for apache user
|
||||||
- /lam/tmp: write permission for apache user
|
- lam/tmp: write permission for apache user
|
||||||
- /lam/config (with subdirectories): write permission for apache user
|
- lam/config (with subdirectories): write permission for apache user
|
||||||
- /lam/lib: perl files must be set executable (See also
|
- lam/lib: perl files must be set executable (See also
|
||||||
docs/readme.lamdeamon.pl)
|
docs/readme.lamdeamon.txt)
|
||||||
|
|
||||||
* Configure config.cfg and create a configuration profile.
|
* Configure config.cfg and create a configuration profile.
|
||||||
Copy config.cfg_sample to config.cfg and set the master password and default
|
Copy config.cfg_sample to config.cfg and set the master password and default
|
||||||
profile.
|
profile.
|
||||||
Then use the web interface with the link "Configuration Login" (start file is /lam/index.html)
|
|
||||||
or configure LAM manually. (The default password to edit the options is "lam")
|
- With web browser:
|
||||||
|
Follow the link "Configuration Login" from the start page (lam/index.html).
|
||||||
|
(The default password to edit the options is "lam")
|
||||||
|
|
||||||
- Manually:
|
- Manually:
|
||||||
A default config file can be found in /lam/config/lam.conf_sample.
|
A default config file can be found in /lam/config/lam.conf_sample.
|
||||||
|
|
13
lam/README
13
lam/README
|
@ -60,19 +60,12 @@ LAM - Readme
|
||||||
Installation:
|
Installation:
|
||||||
Please see the INSTALL file.
|
Please see the INSTALL file.
|
||||||
|
|
||||||
Known Bugs:
|
|
||||||
- If you fill in the Unix workstations field the LDAP add/modify operation
|
|
||||||
may fail. This is because the host attribute is provided only by
|
|
||||||
objectClass account which conflicts with inetOrgPerson.
|
|
||||||
If you want to use host restrictions, add the host attribute to
|
|
||||||
inetOrgPerson in your schema file.
|
|
||||||
|
|
||||||
Documentation:
|
Documentation:
|
||||||
Basic documentation available in /docs
|
Basic documentation is available in the directory "docs".
|
||||||
|
|
||||||
Internationalization:
|
Internationalization:
|
||||||
If you want to use a translated version of LAM be sure to install the
|
If you want to use a translated version of LAM be sure to install the
|
||||||
needed locales. See locale/ for a list of supported locales.
|
needed locales. See locale/ for a list of supported locales and languages.
|
||||||
Debian users can add locales with "dpkg-reconfigure locales".
|
Debian users can add locales with "dpkg-reconfigure locales".
|
||||||
|
|
||||||
Security:
|
Security:
|
||||||
|
@ -81,7 +74,7 @@ LAM - Readme
|
||||||
LAM needs to store your LDAP username + password in the session. The session
|
LAM needs to store your LDAP username + password in the session. The session
|
||||||
files are saved in sess/ and are accessible only by the web server. To increase
|
files are saved in sess/ and are accessible only by the web server. To increase
|
||||||
security username and password are encrypted with MCrypt/AES or Blowfish.
|
security username and password are encrypted with MCrypt/AES or Blowfish.
|
||||||
The key and iv are generated at random when you log in. They are stored in two
|
The key and IV are generated at random when you log in. They are stored in two
|
||||||
cookies.
|
cookies.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue