## Proftpd Special configuration ## Dennis Slagers september 2006 ## www.aroundmyroom.com ## allow user to upload files, list the files in the folder ## but deny download or removal of those files. ## than ## allow admin user to have total control over that upload folder ## Folder where the user enters the FTP ## <Directory /home/sites/domain.ltd.com/users/allow-upload> ## Allow the user with total control ## ## Deny all options for any other user ## <Limit ALL> AllowUser ADMIN-USER DenyAll </Limit> ## Options allowed ## <Limit PWD XPWD CDUP CWD XCWD XCUP LIST PORT PASV MKD> AllowAll </Limit> ## Allow storage of files, could be put in above section I think <Limit STOR STOU> AllowAll </Limit> </Directory>