Encontrou a resposta neste link . Aqui uma extração do meu '/etc/vsftpd.conf':
# This powerful option allows the override of any config option specified
# in the manual page, on a per-user basis. Usage is simple, and is best
# illustrated with an example. If you set user_config_dir to be /etc/vsftpd_user_conf
# and then log on as the user "chris", then vsftpd will apply the settings
# in the file /etc/vsftpd_user_conf/chris for the duration of the session.
# Default: (none)
user_config_dir=/etc/vsftpd/vsftpd-user-conf
Cada vez que um novo usuário virtual ftp precisa de um diretório pessoal ftp, sob o diretório '/ etc / vsftpd / vsftpd-user-conf' eu crio um arquivo chamado username onde defino o diretório pessoal ftp e o auth on (RO ou RW). Exemplo para o usuário 'test' (arquivo '/ etc / vsftpd / vsftpd-user-conf / test'):
# vsftpd per-user basis config file (override of any config option specified
# in the vsftpd server config file)
#
# TEMPLATE
#
# User test - Description for user test
#
# Set local root
local_root=/srv/vsftpd/test
# Disable any form of FTP write command.
# Allowed values: YES/NO
write_enable=YES