3

I have vsftpd 2.3.2-3.

After user uploaded a file it has -rw-------(0600) permissions. Of course user can change permissions manually to anything he likes.

But how to set for example 0700 by default?

puchu
  • 1,992

1 Answers1

2

There is a setting in the vsftpd.conf file:

file_open_mode

The permissions with which uploaded files are created. Umasks are applied on top of this value. You may wish to change to 0777 if you want uploaded files to be executable.

Default: 0666

Simply change the mode to 0777, then with the umask added you get 0700

Ref: http://vsftpd.beasts.org/vsftpd_conf.html

Majenko
  • 32,964