-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
24 lines (24 loc) · 763 Bytes
/
config.php
File metadata and controls
24 lines (24 loc) · 763 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
<?php
return array(
'path' => array(
'system' => 'System',
'resource' => 'Resource',
'view' => 'Views',
'template' => 'Template',
),
'app' => array(
'environment' => 'development',
'select_db' => 'default', // selected database (empty to default)
'encryption_key' => '(*^@HkJKLHkHS875654Khglkg)*=-(%*jh&jgkk'
),
'db' => array(
'default' => array(
'hostname' => getenv('OPENSHIFT_MYSQL_DB_HOST'),
'username' => getenv('OPENSHIFT_MYSQL_DB_USERNAME'),
'password' => getenv('OPENSHIFT_MYSQL_DB_PASSWORD'),
'database' => getenv('OPENSHIFT_APP_NAME'),
'dbdriver' => 'mysqli',
'dbprefix' => '',
)
)
);