Well I figured it out!

GTmetrix analyzes your website and you can see how many requests are being processed through GET commands to the web server. I just had to edit my .htaccess file. The inital load has 11 requests but the subsequent ones now have much less because gzip compression and mainly browser caching have been added to the […]

How do you configure that?

Before clicking on this page I had 0 connections open to my server. root@host [~]# netstat -plan|grep :80|awk {‘print $5’}|cut -d: -f 1|sort|uniq -c|sort -nk 1 1 1 0.0.0.0 1 127.0.0.1 Now I have 20. root@host [~]# netstat -plan|grep :80|awk {‘print $5’}|cut -d: -f 1|sort|uniq -c|sort -nk 1 1 1 0.0.0.0 1 69.16.208.35 20 23.28.18.128 […]