Last active
January 16, 2020 09:59
-
-
Save hissy/606aee8885ef302b49b584623c1046c6 to your computer and use it in GitHub Desktop.
#concrete5 config file for local environment
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 | |
/** | |
* Set default value for curl option | |
*/ | |
return [ | |
'http_client' => [ | |
'connecttimeout' => 30, | |
], | |
]; |
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 | |
/** | |
* Enable debug display | |
* Disable email, marketplace, external access, session invalidate, help overlay | |
*/ | |
return [ | |
'accessibility' => [ | |
'display_help_system' => false, | |
], | |
'debug' => [ | |
'display_errors' => true, | |
/* | |
* Site debug level | |
* | |
* @var string (message|debug) | |
*/ | |
'detail' => 'debug', | |
], | |
'email' => [ | |
'enabled' => false, | |
], | |
'external' => [ | |
'intelligent_search_help' => false, | |
'news' => false, | |
], | |
'marketplace' => [ | |
'enabled' => false, | |
], | |
'security' => [ | |
'session' => [ | |
'invalidate_on_user_agent_mismatch' => false, | |
'invalidate_on_ip_mismatch' => false, | |
], | |
], | |
'updates' => [ | |
'skip_core' => true, | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Download valet.app.php and valet.concrete.php into your application/config/ directory.
"valet" is the name of the environment. If you don't use valet, please follow this documentation to separate config files between environments.