Skip to content

Commit 0b4bf5d

Browse files
committed
settings setup
1 parent ce77a7b commit 0b4bf5d

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

cnf/settings.local.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
$databases = array (
4+
'default' => array (
5+
'default' => array (
6+
'database' => 'DATABASE_NAME',
7+
'username' => 'DATABASE_USERNAME',
8+
'password' => 'DATABASE_PASSWORD',
9+
'host' => 'localhost',
10+
'port' => '',
11+
'driver' => 'mysql',
12+
'prefix' => '',
13+
),
14+
),
15+
);
16+
17+
$drupal_hash_salt = 'SOME_REALLY_RANDOM_STRING';

cnf/settings.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
include dirname(__FILE__) . '/settings.local.php';
4+
5+
$update_free_access = FALSE;
6+
7+
ini_set('session.gc_probability', 1);
8+
ini_set('session.gc_divisor', 100);
9+
ini_set('session.gc_maxlifetime', 200000);
10+
ini_set('session.cookie_lifetime', 2000000);
11+

0 commit comments

Comments
 (0)