Skip to content

Instantly share code, notes, and snippets.

@1stevengrant
Created February 5, 2016 10:36
Show Gist options
  • Save 1stevengrant/e3a5346b3d1dde2eb033 to your computer and use it in GitHub Desktop.
Save 1stevengrant/e3a5346b3d1dde2eb033 to your computer and use it in GitHub Desktop.
local config
<?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