See the Graceful Restart section on this page:
http://httpd.apache.org/docs/2.0/stopping.html
Allows you to reconfigure Apache without completely restarting it.
Kexiao Liao wrote:
When we finish Zend Framework application, and put it on the production
server. We need to modify the web server configuration file, in case of
Apache Server, we need to modify httpd.conf and add an alias name and the
associated <Directory> tag contents like following:
<Directory "/pathto/zfgrid/document_root">
Options all
AllowOverride all
Order allow,deny
Allow from all
</Directory>
After modify the httpd.conf configuration file, we need restart Apache
server. For production site, this is not a good solution.
Is there another approach which we can avoid modification of httpd.conf file
and restarting the server?
--
Jack