How does local_umask and file_open_mode work?
The vsftpd daemeon will create file permissions as 0777. From that, the local_umask
( 0011 ) is subtracted. The umask essentially removes the permissions you don't want users to have. This results in the user's file permissions to be set at 0766.
For more information, see this article about file permissions.