Issue :
How to change Apache Time Out for a single website ?
Solution :
Even though Apache Timeout is a global environment directive, you can still change that for a single domain by modifying the corresponding VirtualHost entry for the domain.
It should look something like this :
ServerName domainname.com
ServerAlias www.domainname.com
DocumentRoot /home/user/public_html
ServerAdmin [email protected]
Timeout xxx
.
.
.
Do restart the httpd service after making the alterations.