Skip to content

Instantly share code, notes, and snippets.

@keithmancuso
Last active December 25, 2015 13:19
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 keithmancuso/6982300 to your computer and use it in GitHub Desktop.
Save keithmancuso/6982300 to your computer and use it in GitHub Desktop.
Craft Multiple site Config
return array(
'devMode' => false,
'environmentVariables' => array(
'siteUrl' => 'http://economicexperts.eu/'
),
'.dev' => array(
'devMode' => true,
'backupDbOnUpdate' => false,
'cacheDuration' => 1,
'environmentVariables' => array(
'siteUrl' => 'http://ecee.dev/'
)
),
'.eu' => array(
'devMode' => false,
'environmentVariables' => array(
'siteUrl' => 'http://economicexperts.eu/'
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment