LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to create a new user for ftp upload in a web server using vsftpd centos (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-create-a-new-user-for-ftp-upload-in-a-web-server-using-vsftpd-centos-4175411985/)

SarahGurung 06-17-2012 10:53 PM

how to create a new user for ftp upload in a web server using vsftpd centos
 
I have a web server which does virtual web hosting and for each virtual host, each virtual user has been created which has access only to its respective home directory and can upload via ftp.

Now i want to create a new user(not for a new website) which can have access only to its home directory when it does ftp upload and download. So is it possible to do that because the new user is not for a new website and in httpd configuration what should i give in the "ServerName"?

Or is it ok if i give the domain name of the web server hosting those? will it not conflict?

EXAMPLE: <VirtualHost *:80>
ServerAdmin admin@xxx.com
DocumentRoot /var/www/html/sarah
ServerName www.xxx.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>

where xxx.com is the domain of the webserver and sarah is the new user.

montel 06-18-2012 09:55 AM

Any domain name that is pointing to the server should work. If the login is not associated with any website, you could just use the external IP as well. It shouldn't be a conflict, because it will just see that "sarah" is logging into ftp, and give her access to /var/www/html/sarah.

Please correct me if I am wrong.

smoker 06-18-2012 02:39 PM

Why are you using apache to give someone ftp access ?
Just create a user with ftp access, no apache config needed.


All times are GMT -5. The time now is 04:49 AM.