You could do a "Graceful Restart":
http://httpd.apache.org/docs/2.2/stopping.html#graceful

You might want to look into implementing VirtualDocumentRoot:
http://httpd.apache.org/docs/2.2/mod/mod_vhost_alias.html#virtualdocumentroot

You do not even need to edit httpd.conf anyway. Use .htaccess instead:
http://httpd.apache.org/docs/2.2/howto/htaccess.html

On 8/9/07, Kexiao Liao <[EMAIL PROTECTED]> wrote:
>
> My key point is, if we already enable mod_rewrite in the apache server, Can
> we deploy Zend Framework Application without modifying httpd.conf file to
> add alias name for the document_root directory?
>
> Kevin
>
>
> Jack Sleight wrote:
> >
> > 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
> >
> >
>
> --
> View this message in context: 
> http://www.nabble.com/Deploy-Zend-Framework-application-on-the-production-server-tf4242664s16154.html#a12077402
> Sent from the Zend Framework mailing list archive at Nabble.com.
>
>

Reply via email to