-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfig.example.php
More file actions
119 lines (97 loc) · 1.69 KB
/
config.example.php
File metadata and controls
119 lines (97 loc) · 1.69 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php if ( ! defined('IPLACARD')) exit('No direct script access allowed');
/**
* iPlacard 配置文件
* @author Kaijia Feng <fengkaijia@gmail.com>
* @copyright 2013 Kaijia Feng
* @license Dual-licensed proprietary
* @link http://iplacard.com/
* @since 2.0
*/
/**
* 设置环境模式(development、testing、production)
*/
define('IP_ENVIRONMENT', 'development');
/**
* 数据库服务器
*/
define('IP_DB_HOSTNAME', '');
/**
* 数据库连接帐号
*/
define('IP_DB_USERNAME', '');
/**
* 数据库连接密码
*/
define('IP_DB_PASSWORD', '');
/**
* 数据库名称
*/
define('IP_DB_DATABASE', '');
/**
* 数据库驱动
*/
define('IP_DB_DRIVER', 'mysqli');
/**
* 默认数据表前缀
*/
define('IP_DB_PREFIX', 'ip');
/**
* 缓存前缀
*/
define('IP_CACHE_PREFIX', 'ip');
/**
* 加密密钥
*/
define('IP_ENCRYPTION_KEY', 'iplacard');
/**
* API Access Key
*/
define('IP_DEFAULT_API_ACCESS_KEY', '');
/**
* 默认域名
*/
define('IP_DOMAIN', '');
/**
* 静态文件CDN
*/
define('IP_STATIC_CDN', '');
/**
* 是否启用SMTP
*/
define('IP_SMTP', false);
/**
* SMTP服务器
*/
define('IP_SMTP_HOST', '');
/**
* SMTP用户名
*/
define('IP_SMTP_USER', '');
/**
* SMTP密码
*/
define('IP_SMTP_PASS', '');
/**
* SMTP端口
*/
define('IP_SMTP_PORT', '');
/**
* SMTP加密模式(tls、ssl,空为不加密)
*/
define('IP_SMTP_SSL', '');
/**
* 反向代理IP列表
*/
define('IP_REVERSE_PROXY', join(',', array(
''
)));
/**
* Memcached缓存服务器列表
*/
define('IP_MEMCACHED_SERVER', serialize(array(
'hostname' => '127.0.0.1',
'port' => 11211,
'weight' => 1
)));
/* End of file config(.example).php */
/* Location: ./config(.example).php */