-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.php.dist
More file actions
35 lines (31 loc) · 864 Bytes
/
config.php.dist
File metadata and controls
35 lines (31 loc) · 864 Bytes
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
// TODO: change according to your setup
global $config;
$appRootDir = __DIR__;
$serverName = (isset($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : null;
$config = array(
'env' => array(
'app_root_dir' => $appRootDir,
'base_URL' => 'http://' . $serverName,
'max_upload_size' => 1000000
),
'blog' => array(
'author' => 'You',
'title' => 'My blog',
'description' => 'A blog on tech and kitties',
),
'sql' => array(
'host' => 'localhost',
'username' => 'orangecms',
'password' => 'orangecms',
'database' => 'orangecms'
),
'user' => array(
'username' => 'orangecms',
'password' => 'orangecms'
),
'system' => array(
'debug' => false,
'verbose' => true,
)
);