How to reload apache configuration for a site without restarting apache?
It should be possible using the command
sudo /etc/init.d/apache2 reload
I hope that helps.
Do
apachectl -k graceful
Check this link for more information : http://www.electrictoolbox.com/article/apache/restart-apache/
Another way would be:
sudo service apache2 reload