forked from SkyPHP/skyphp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
executable file
·40 lines (29 loc) · 1.04 KB
/
config.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
36
37
38
39
40
<?php
/*
default config settings
*/
// 1.7.2 breaks stuff
$jquery_version = '1.9.1';
$cookie_timeout = 60 * 60 * 18; // 18 hours
$default_page = 'pages/default/default.php';
$global_template = 'templates/html5/html5.php';
$page_404 = 'pages/404.php';
// db replication
# $db_replication = 'repmgr';
// if using a load balancer with ssl termination, it may use a custom ssl indicator header
#$server_ssl_header = 'HTTP_SSLCLIENTCIPHER';
// where to store session data? if memcache or db is not setup,
// it will fallback gracefully to default session handler (/tmp files)
$session_storage = 'memcache';
# $session_storage = 'db';
// aql model path
$sky_aql_model_path = 'models/';
// include files
$includes[] = 'lib/core/functions.inc.php';
$includes[] = 'lib/adodb/adodb.inc.php';
// needed by php 5.3
$date_default_timezone = 'America/New_York';
// access denied output
$access_denied_output_file = 'lib/core/hooks/login/access-denied-output.php';
// encrypt key - for use with the encrypt/decrypt functions
$sky_encryption_key = '0123456789abcdef';