我有一个 ftp 用户 chroot 到另一个用户的子目录,该子目录可以读写,但主用户也需要能够编辑文件
像这样:
/用户1/
/用户1/用户2/
我怎样才能让它在 proftpd 中工作?
因为它是一个 www 目录,所以它也必须是安全的(apache 用户无权写入)
答案1
您可以创建一个组,将两个用户添加到其中,并使该目录归该组所有且可写,如下所示:
addgroup ftpeditors
adduser user1 ftpeditors
adduser user2 ftpeditors
chgrp ftpeditors /user1/user2
chmod g+w /user1/user2