Created
February 5, 2016 10:36
-
-
Save 1stevengrant/e3a5346b3d1dde2eb033 to your computer and use it in GitHub Desktop.
local config
This file contains hidden or 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 | |
/** | |
* Local Config Override | |
* | |
* Overrides added here will get appended to the end of the | |
* custom config array for all environments: '*' | |
*/ | |
return array( | |
// Give us more useful error messages | |
'devMode' => false, | |
// Route ALL of the emails that Craft | |
// sends to a single email address. | |
'testToEmailAddress' => '', | |
'translationDebugOutput' => false, | |
'useCompressedJs' => true, | |
'cacheDuration' => 'P1D', | |
'cooldownDuration' => 'PT5M', | |
'maxInvalidLogins' => 5, | |
'invalidLoginWindowDuration' => 'PT1H', | |
'phpMaxMemoryLimit' => '256M', | |
// Member login info duration | |
// http://www.php.net/manual/en/dateinterval.construct.php | |
'userSessionDuration' => 'P101Y', | |
'rememberedUserSessionDuration' => 'P101Y', | |
'rememberUsernameDuration' => 'P101Y', | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment