mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
33 lines
554 B
PHP
33 lines
554 B
PHP
<?php
|
|
/*
|
|
|
|
Hosts
|
|
- configure host specific environment settings
|
|
|
|
*/
|
|
|
|
|
|
# host configuration
|
|
# - set environment, default format, and root path for
|
|
# specific hosts. available options are "environment",
|
|
# "format", and "root".
|
|
$hosts = array(
|
|
// "zynapse" => array(
|
|
//
|
|
// ),
|
|
// "iphone.zynapse" => array(
|
|
// "format" => "iphone",
|
|
// ),
|
|
// "admin.zynapse" => array(
|
|
// "root" => "admin",
|
|
// ),
|
|
// "*zynapse.org" => array(
|
|
// "environment" => "production",
|
|
// ),
|
|
// "admin.zynapse.org" => array(
|
|
// "root" => "admin",
|
|
// ),
|
|
);
|
|
|
|
|
|
?>
|