Foxpass の LDAP サーバーで動作するように ProFTPd を構成する
「proftpd」と呼ばれる Foxpass で LDAP バインダーを作成します。生成されたパスワードを記録します。
/etc/proftpd/modules.conf を編集します
アンコメント:
LoadModule mod_ldap.c
/etc/proftpd/proftpd.conf を編集して、'dc=example,dc=com' を Foxpass ダッシュボードのベース DN に置き換えます。
<IfModule mod_ldap.c>
LDAPLog /var/log/proftpd/ldap.log
LDAPAuthBinds on
LDAPServer ldaps://ldap.foxpass.com
LDAPBindDN "cn=proftpd,dc=example,dc=com" "bindpw"
LDAPUsers "dc=example,dc=com" "(uid=%u)"
LDAPSearchScope subtree
LDAPGenerateHomedir on
LDAPGenerateHomedirPrefix /home
</IfModule>