Sub-domain - Multiple FTP Accounts

TradeViceroy

New member
Joined
Feb 15, 2004
Messages
3
Hello:

Is it possible to create several FTP accounts for one sub-domain? For example, I would like to create user1, user2, and user3 all on test.domain.com.

This way, if I want to disable access for user3, I can delete his account while allowing users 1 and 2 untouched.

Is this possible or will it be? Thanks.
 
Hello,

Not with the standard setup. But there are 2 ways to make it work.

1) if you have root privileges, you can just manually add the line in your ftp password file (/etc/proftpd.passwd or /usr/local/directadmin/data/usres/username/ftp.passwd)

2) create the 2nd user as a subdomain user, but create a symbolic link to the first subdomain:

add: user1
Code:
cd /home/username/domains/domain.com/public_html
rm -rf user1
ln -s test user1
John
 
Back
Top