Chmod authorization Proftpd
Sometimes we need to configures manually all the chmod of each files and directories.
You can configure each ftp accounts from enable / disable chmod using directives on proftpd.conf
<Limit SITE_CHMOD>
AllowUser ftpadmin
DenyAll
</Limit>
Above directives mean that only ftpadmin user can use chmod, anyone else denied.
To be able all ftp user use chmod :
<Limit SITE_CHMOD>
AllowAll
</Limit>
Save proftpd.conf and reload the proftpd service .
No Comments »
No comments yet.