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?
--
View this message in context:
http://www.nabble.com/Deploy-Zend-Framework-application-on-the-production-server-tf4242664s16154.html#a12072546
Sent from the Zend Framework mailing list archive at Nabble.com.