Skip to content

Instantly share code, notes, and snippets.

@DASPRiD
Forked from bakura10/text.php
Last active August 29, 2015 13:59
Show Gist options
  • Save DASPRiD/10599050 to your computer and use it in GitHub Desktop.
Save DASPRiD/10599050 to your computer and use it in GitHub Desktop.
<?php
$routes = [];
if ($_SERVER['ENV'] === 'production') {
$options = ['hostname' => 'connect.mysite.com', 'secure' => true];
} else {
$options = ['hostname' => 'connect.localhost.com'];
}
return [
'router' => [
'routes' => [
$routes,
'oauth' => $options
]
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment