-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.local.php
35 lines (28 loc) · 1.05 KB
/
settings.local.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* settings.local.php
*
* This is where you store your environment-specific configurations.
* The site's settings.php file should inherit this automatically.
* If this is your first time here, simply replace all CAPITALIZED
* variables below with the proper values.
*/
// Database definition.
$databases['default']['default'] = array(
'driver' => 'mysql',
'database' => 'DATABASE_NAME',
'username' => 'USERNAME',
'password' => 'PASSWORD',
'host' => 'localhost',
'prefix' => '',
'collation' => 'utf8_general_ci',
);
// Define base URL for the installation.
# $base_url = 'http://YOUR-DOMAIN.com'; # DO NOT ADD TRAILING SLASH!
// Apache Solr Index Definition.
# $conf['apachesolr_environments']['solr']['url'] = 'http://localhost:8983/solr/drupal';
// Configure the site's region name. NOTE: this should be set through the UI, either
// during installation or under /admin/config/system/site-information
# $conf['region_name'] = 'YOUR REGION';
// Define installation profile to use at all times.
$conf['install_profile'] = 'angular';