proftpd configuration & specific anonymous login rules...
I am attempting to setup a proftpd configuration with the following rules:1) users may log in anonymously
2) users may upload files
3) users may not download files
4) users are trapped within the initial login directory and cannot move up or down the directory structure
5) users cannot see other uploaded files when they log in
I found a configuration snippet, but I'm not sure if I need more to set all these rules.
<Directory uploads/*>
<Limit READ>
DenyAll
</Limit>
<Limit STOR>
AllowAll
</Limit>
</Directory>
I'm pretty sure I'm missing something here...
Additionally, I would like these rules to apply to only ONE account on the server. The server is cPanel based with many accounts. Any sort of help/insight would be greatly appreciated!