Explanation Of MaxClients Directive
MaxClients will define the maximum connections that could be opened to the Apache web server, any connections higher that amount will be qued until the open remaining connections get closed, and the amount of time that this connection request can wait is depended on the value …
1 March 2010
2 comments
if you are curious to know how much is the connections made to your webserver to have a better idea to know how to optimize your apache prefork settings you can use the following combination of command
use the following to see the conections made to the webserver in real time …
6 February 2010
No comments
as one of my visitors asked me a tutorial ,guiding aout how to protect his links from leechers and those who have put the refrence of his files in a link in other websites so that his bandwidth would be stole and consume him to pay more for hsi site …
31 January 2010
7 comments
yesterday one fo my ffriends told me that as he changed his server the mime types such as “mp3,ogg,avi” will no longer downloadable
I had my guess to 10% sure as he was ecplaining this a bit unclear that he may have not the types added in his httpd.conf of whole …
30 January 2010
4 comments
if you are using an apache webservera and want to redirect www to non-www urls you can achieve this by editing the .htaccess, so follow the instructions proviced bellow
edit the .htaccess foile or if you dont have create one
open it and created this rul by writing this
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule …
30 January 2010
No comments
use the following command to ahieve this
netstat -plan|grep :80|awk {‘print $5′}|cut -d: -f 1|sort|uniq -c|sort -n
3 January 2010
No comments