Difference between revisions of "Proftd Setup"
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
apt-get install proftpd | apt-get install proftpd | ||
<code> | <code> | ||
standalone | |||
nano /etc/proftpd/proftpd.conf | |||
Servername ip address or domain name | |||
DefaultRoot /var/www | |||
service proftpd restart | |||
useradd -G www-data username | |||
passwd username | |||
chown -R www-data:www-data /var/www | |||
chmod -R g+rw /var/www | |||
it will use the username from your ubuntu user setup | |||
RequireValidShell off | |||
</code> | </code> |
Revision as of 20:40, 8 August 2016
installing and setting up pro ftpd
apt-get install proftpd
standalone
nano /etc/proftpd/proftpd.conf
Servername ip address or domain name
DefaultRoot /var/www
service proftpd restart
useradd -G www-data username
passwd username
chown -R www-data:www-data /var/www
chmod -R g+rw /var/www
it will use the username from your ubuntu user setup
RequireValidShell off