Is it possible to give someone FTP access to just one directory (and its subdirectories) and not all the directories of the webserver?
feedback
|
|
Yes, as long as your FTP Server software supports it (99.9% will). Generally you should be able to configure folder-specific access in the "user management" section. Just remember, that if you deny access to the root of the server, the user will not be able to access the sub-folders. That is: CORRECT SETUP: FTP_ROOT_FOLDER -- > Grant access to all ----> FTP_FOLDER_1 --> Grant access to user1 ----> FTP_FODLER_2 --> Grant access to user2 INCORRECT SETUP: FTP_ROOT_FOLDER --> No access ----> FTP_FOLDER_1 --> Grant access to user1 ----> FTP_FOLDER_2 --> Grant access to user2 INCORRECT SETUP: FTP_ROOT_FOLDER --> Grant access to all ----> FTP_FOLDER_1 --> Deny access to user1 ---------> SUB_FOLDER_1 --> Grant access to user1 | |||||||
feedback
|