You are currently viewing Zend Server 5.x documentation. Click here to view the latest Zend Server online documentation.
You are here: Zend Server User Guide > Tasks > Working with Deployment > Changes to Your Apache During Deployment Actions

Changes to Your Apache During Deployment Actions

When performing a deployment action, such as deploying, synchronizing/redeploying, updating, rolling back or removing an application, Zend Serverrestarts and performs certain changes to your Apache. The web server configuration is modified to create virtual hosts and aliases for deployed applications. In order to make the modifications simple and maintainable, the Zend Server configuration is small separate files which are hooked into Apache.

Zend Server installation inserts an include in two places:

  1. 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"

  2. 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:

The Apache Restart

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.

 

© 1999-2013 Zend Technologies, Ltd. All rights reserved.