Zend Server installation inserts an 'include' in two places:
Inside the default virtual host section (the first defined virtual
host is assumed to be the default):
Include"<ZEND_DIR>/etc/sites.d/zend-default-vhost.conf"
Note:
The content of the above file should be:
Include "<ZEND_DIR>/etc/sites.d/http/__default__/0/*.conf"
<Directory "<ZEND_DIR>/<data_dir>/apps/__default__/0">
# ...application directory settings
</Directory>
At the end of the Apache configuration:
Include <ZEND_DIR>/etc/sites.d/globals-*.conf
Include
<ZEND_DIR>/etc/sites.d/vhost_*.conf
For each deployed application, Zend Server creates the following files:
When Zend Server restarts your Web server, current requests are aborted and lost. The sessions are kept in the same state as before the restart, and all information that was modified in the session during the ongoing request is lost. After the restart begins, incoming requests are queued until the restart completes and are then processed.