vsftpd - "real" vs. "virtual" users
Hi, I'm setting up a new webserver and FTP server.
The idea is this:
Owners of websites (identified by name and password) must be able to make changes to their home directories.
Anonymous user is only able to download files from user ftp home directory.
Using vsftpd, I want to know if there is a difference regarding security between:
a. users are real users, with no shell access
chroot_local_user=YES
userlist_enable=YES
userlist_deny=NO
userlist_file=/etc/vsftpd.user_list
and
b. users are all virtual, only one real user and guest_enable=YES, then mapping everyone to their home directory as explained in the man page.
Thanks
|