-
Notifications
You must be signed in to change notification settings - Fork 33
DFS 配置
Qiufang Zhang edited this page Jun 7, 2017
·
6 revisions
- define('ServerIp',"0.0.0.0"); 配置服务器监听ip地址
- define('ServerPort',"9508");配置服务器监听端口
- define('ServerLog',dirname(DIR).'/log/FileDistributed.log');配置服务器日志路径
- define('redis_server','192.168.102.163');配置redis连接ip,注意redis启动时bind的ip不能为127.0.0.1
- define('redis_port','6379');配置redis的端口号
- define('redis_auth','123qwe');redis认证密码
- define('LISTENPATH',dirname(DIR).'/img');配置监听目录,dfs支持无限子目录监听
- define('allsysnc',true);是否允许扫描本地已存在的文件或者目录同步
- define('maxpackage', 1024 * 1024 * 200);配置协议包的最大长度
- define('Bincmd', '/usr/local/php/bin/php');配置php的绝对路劲
- define('file_arg', 'dfs');配置项目名称
DFS 使用