-
-
Save DASPRiD/2f2544eb4b6539fcca0b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array('router' => array( | |
'prototypes' => array( | |
'https' => array( | |
'type' => 'scheme', | |
'options' => array('scheme' => 'https'), | |
), | |
'api' => array( | |
'type' => 'hostname', | |
'options' => array('hostname' => 'api.example.com'), | |
), | |
), | |
'routes' => array( | |
'foo' => array( | |
'chain_routes' => array('htps', 'api') | |
), | |
'bar' => array( | |
'chain_routes' => array('htps', 'api') | |
), | |
) | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do those not using PHP for config manage it, then?