I try to install an FTP server on my rpi with an anonymous access. I have this vsftpd.conf:
listen=NO
listen_ipv6=YES
anonymous_enable=YES
anon_root=/srv/ftp
hide_ids=YES
allow_writeable_chroot=YES
chroot_local_user=YES
chroot_list_enable=NO
local_enable=YES
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
secure_chroot_dir=/var/run/vsftpd/empty
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
ssl_enable=NO
But when I try an anonymous access with Filezilla, the connection failed with the error: 500 OOPS: vsftpd: refusing to run with writable root inside chroot(). Thanks for your help.