Files
zynapse/config/environment.php
Jim Myhrberg ba21fff133 * Added environment specific config files.
* Made environment config files set the ActionEnvironment object properties directly.
2009-08-15 21:29:45 +03:00

30 lines
540 B
PHP

<?php
/*
Zynapse Environment
- configure server environments and display modes
*/
# Default environment - Overridden by host specific
# configurations.
#
# ( development | test | staging | production )
$this->env = 'development';
# Default server display mode - Overridden by host
# specific configurations.
$this->mode = 'web';
# When enabled, environment and more is set based
# on the current domain that zynapse is running from.
#
# Configure hosts in "config/hosts.php".
$enable_host_specific_configuration = true;
?>