mirror of
https://github.com/myvesta/vesta
synced 2025-08-21 05:44:08 -07:00
Update vsftpd.conf
better for security: using 022 for local_umask and anon_umask is better than 002 , it will create default 755 folders and 644 files (instead of 775) : 777 - 775 = 002 777 - 755 = 022 i think it's better to change in all vsftpd.conf files (all in install folder) regards
This commit is contained in:
parent
745769dab8
commit
53cd231148
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
||||||
anonymous_enable=NO
|
anonymous_enable=NO
|
||||||
local_enable=YES
|
local_enable=YES
|
||||||
write_enable=YES
|
write_enable=YES
|
||||||
local_umask=002
|
local_umask=022
|
||||||
|
anon_umask=022
|
||||||
anon_upload_enable=NO
|
anon_upload_enable=NO
|
||||||
dirmessage_enable=YES
|
dirmessage_enable=YES
|
||||||
xferlog_enable=YES
|
xferlog_enable=YES
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue