Remove Nginx and CentOS image

How to remove Nginx on a RHEL or CentOS in Vesta Control Panel

This is tutorial how to remove Nginx on a RHEL or CentOS in Vesta Control Panel 1. Stop nginx service nginx stop 2. Remove package yum remove nginx 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 4. Change httpd configuration cd /etc/httpd/conf.d sed -i “s/8080/80/” *.conf […]

See More

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 […]

See More

How to install ClamAV and SpamAssassin on a Debian or Ubuntu

This tutorial is created for servers with less than 3Gb of ram avaialbe. On “big” servers installation is fully automatic. * ClamAV installation apt-get install clamav-daemon wget http://c.vestacp.com/0.9.8/ubuntu/clamd.conf -O /etc/clamav/clamd.conf gpasswd -a clamav mail gpasswd -a clamav Debian-exim freshclam update-rc.d clamav-daemon defaults service clamav-daemon restart * SpamAssassin installation apt-get install spamassassin update-rc.d spamassassin defaults sed […]

See More