How to replace vsftpd with ProFTPD on a Debian or Ubuntu in Vesta Control Panel

How to replace vsftpd with ProFTPD on a Debian or Ubuntu in Vesta Control Panel ? 1. Disable vsftpd service vsftpd stop update-rc.d -f vsftpd remove 2. Install software package apt-get install proftpd-basic proftpd-mod-vroot 3. Download configuration wget http://c.vestacp.com/0.9.8/debian/proftpd.conf -O /etc/proftpd/proftpd.conf 4. Change vesta settings sed -i “s/vsftpd/proftpd/” /usr/local/vesta/conf/vesta.conf 5. Restart proftpd service proftpd restart

See More

How to enable AXFR (Zone Transfer) in Bind on Vesta Control Panel

Enable AXFR (Zone Transfer) in Bind on Vesta Control Panel Replace following string in the named configuration file: allow-transfer {“none”;}; with allow-transfer { XXX.YYY.ZZZ.111; XXX.YYY.ZZZ.222; }; also-notify { XXX.YYY.ZZZ.111; XXX.YYY.ZZZ.222; }; The location of this file on RHEL and CentOS: /etc/named.conf The location of this file on Debian and Ubuntu: /etc/bind/named.conf

See More

How to enable PHP-FCGI support on a Debian or Ubuntu on Vesta Control Panel

This tutorial is created for servers with less than 1Gb of ram avaialbe. On “medium” servers installation is fully automatic. 1. Install fcgid apache module apt-get install libapache2-mod-fcgid a2enmod fcgid 2. Download fcgid template cd /usr/local/vesta/data/templates/web wget http://c.vestacp.com/0.9.8/ubuntu/fcgid/apache2.tar.gz tar -xzvf apache2.tar.gz rm -f apache2.tar.gz 3. Create new package or set phpfcgid as apache template in […]

See More