Skip to content

Instantly share code, notes, and snippets.

@jenlampton
Created November 2, 2019 01:28
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 jenlampton/20ffded3271eaeacdb1399a264261473 to your computer and use it in GitHub Desktop.
Save jenlampton/20ffded3271eaeacdb1399a264261473 to your computer and use it in GitHub Desktop.
<?php
/**
* @file
* Backdrop CMS configuration file.
*/
/**
* Database configuration:
*/
$database = 'mysql://backdrop:backdrop01@localhost/norecipe';
$database_charset = 'utf8mb4';
/**
* Site configuration files location.
*/
$config_directories['active'] = '../config/dev-active';
$config_directories['staging'] = '../config/staging';
/**
* Access control for update.php script.
*/
$settings['update_free_access'] = FALSE;
/**
* Trusted host configuration (optional but highly recommended).
*/
$settings['trusted_host_patterns'] = array(
'^noreciperequired\.com$',
'^www\.noreciperequired\.com$',
'^dev\.noreciperequired\.com$',
);
/**
* Base URL (optional).
*/
$base_url = 'http://dev.noreciperequired.com'; // NO trailing slash!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment