TestLink:LDAPで認証
TestLinkの認証をLDAPのパスワードにて行うようにする場合。
例えばApacheのBasic認証にて以下のような設定を行っているとした場合。
AuthBasicProvider ldap
AuthLDAPUrl ldap://localhost:389/dc=testsvr?uid
AuthLDAPBindDN "cn=Manager,dc=testsvr"
AuthLDAPBindPassword ldappassword
config.inc.phpファイルの内容を以下のように設定します。
$g_login_method = 'LDAP';$g_ldap_server = 'localhost';
$g_ldap_port = '389';
$g_ldap_root_dn = 'dc=testsvr';
$g_ldap_organization = '';
$g_ldap_uid_field = 'uid';
$g_ldap_bind_dn = 'cn=Manager,dc=testsvr';
$g_ldap_bind_passwd = 'ldappassword';
こうすれば、パスワードの情報を他のアプリケーション(LDAPに対応している必要はありますが)と共通化することができます。なお、LDAPの認証を行うようにした場合、当然ながらTestLinkからはパスワードの変更を行うことはできなくなります。
「Subversion・Trac・etc.」カテゴリの記事
- Kanboard(2017.06.13)
- XML parsing failed : (413 Request Entity Too Large)(2017.06.11)
- TortoiseSVNとクライアント証明書(2012.09.17)
- Trac 1.1.1(dev)(2012.09.15)
- Trac1.0 リリース(2012.09.09)
The comments to this entry are closed.
Comments