Enable Deployment on Virtual Host
To deploy applications on this system-defined virtual host, you will first need to enable deployment.
Since Zend Server does not have write permissions for the virtual host's configuration files on your Web server,
add the following line of code:
{{ wizard.addLine }}
to the virtual host section in the configuration files of all your servers, located at:
{{ wizard.toPath }}
Example
server {
listen 80;
root /var/www;
{{ wizard.addLine }}
}
<VirtualHost *:80>
DocumentRoot /var/www
...
{{ wizard.addLine }}
</VirtualHost>