Skip to content

Instantly share code, notes, and snippets.

@bakura10
Created April 13, 2014 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bakura10/10598966 to your computer and use it in GitHub Desktop.
Save bakura10/10598966 to your computer and use it in GitHub Desktop.
<?php
$routes = [];
if ($_SERVER['ENV'] === 'production') {
$routes = [
'base-connect' => ['hostname' => 'connect.mysite.com', 'secure' => true]
];
} else {
$routes = [
'base-connect' => ['hostname' => 'connect.localhost.com'];
]
}
return [
'router' => [
'routes' => [
$routes,
'oauth' => ['prepend_by' => 'base-connect']
]
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment