How to remove Nginx on a Debian or Ubuntu in Vesta Control Panel

Remove Nginx on a Debian or Ubuntu in Vesta Control Panel,  Let Go Step 1. Stop nginx service nginx stop Step 2. Remove package apt-get remove nginx Step 3. Change vesta configuration cd /usr/local/vesta/conf sed -i “/PROXY_*/d” vesta.conf sed -i “s/8080/80/” vesta.conf sed -i “s/8443/433/” vesta.conf Step 4. Change httpd configuration cd /etc/apache2/conf.d sed -i […]

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

How to set up PostgreSQL on a Debian or Ubuntu in Vesta Control Panel

Set up PostgreSQL on a Debian or Ubuntu in Vesta Control Panel Step 1. Install PostgreSQL packages apt-get install postgresql postgresql-contrib phppgadmin Step 2. Download hba configuration wget http://c.vestacp.com/0.9.8/debian/pg_hba.conf -O /etc/postgresql/*/main/pg_hba.conf Step 3. Restart the server service postgresql restart Step 4. Set oracle user password su – postgres psql -c “ALTER USER postgres WITH PASSWORD […]