Created
April 27, 2016 09:26
-
-
Save iler/0c6209a57f579b0229a6725bcb0d257c to your computer and use it in GitHub Desktop.
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 | |
/** | |
* Database settings: | |
*/ | |
$databases = array(); | |
/** | |
* Location of the site configuration files. | |
*/ | |
$config_directories = array(); | |
/** | |
* Salt for one-time login links, cancel links, form tokens, etc. | |
*/ | |
$settings['hash_salt'] = 'x5cXoUOZwUyDLneh2LM2K4HIdhTILlQslBTGXZP5pMx5bCuOoGiGP-zgk5BnY0EcS_vnHYmwCA'; | |
/** | |
* Access control for update.php script. | |
*/ | |
$settings['update_free_access'] = FALSE; | |
/** | |
* Load services definition file. | |
*/ | |
$settings['container_yamls'][] = __DIR__ . '/services.yml'; | |
/** | |
* Load local override configuration, if available. | |
*/ | |
if (file_exists(__DIR__ . '/settings.local.php')) { | |
include __DIR__ . '/settings.local.php'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment