How to setup nginx varnish apache on a CentOS

This small script does install all necessary parts to get nginx, varnish and apache running on your CentOS:

yum install screen sysstat net-snmp htop
rpm --nosignature -i http://repo.varnish-cache.org/redhat/el5/noarch/varnish-release-2.1-2.noarch.rpm
yum install varnish
wget http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
rpm -Uvh epel-release-5-4.noarch.rpm 
yum install nginx
chkconfig varnish on
chkconfig httpd on
chkconfig nginx on
vi /etc/nginx/nginx.conf
vi /etc/nginx/conf.d/virtual.conf 
vi /etc/varnish/default.vcl 
vi /etc/httpd/conf/httpd.conf

Ubuntu Vmware stability increased

I have had the problem on my ubuntu 7.10 install with the latest vmware workstation release. The virtual system was running a CactiEasy install, which is the cornerstone of my network trendanalysis platform.
The problem does occur, when the ubuntu system was under high network i/o (>50Mbit/s). It simply disconnected the vmware from the bridging, the cacti install was only able to reach the ubuntu system and itself, but no other system. Not a good thing for a network monitoring system.

After the upgrade to 8.04.2 LTS of ubuntu this problem vanished. :-)