Skip to content

Instantly share code, notes, and snippets.

@iler
Created April 27, 2016 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iler/0c6209a57f579b0229a6725bcb0d257c to your computer and use it in GitHub Desktop.
Save iler/0c6209a57f579b0229a6725bcb0d257c to your computer and use it in GitHub Desktop.
<?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