f5af11a7907e7eb939a669c04251742c3409b23f.svn-base 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. $configsys = include_once('../../../config/extra/sys.php');
  3. $isopen = isset($configsys['qiniu']) && $configsys['qiniu'] == 1 ? 1 : 0;
  4. return array(
  5. 'upload_type' => $isopen ? 'qiniu' : 'local', // [qiniu|local] 设置上传方式 qiniu 上传到七牛云存储 ,local 上传到本地
  6. /* 本地上传配置信息 */
  7. 'orderby' => 'desc', // [desc|asc] 列出文件排序方式,仅仅在本地上传时候有效
  8. 'root_path' => $_SERVER['DOCUMENT_ROOT'], //本地上传 本地的绝对路径
  9. /* 七牛云存储信息配置 */
  10. 'bucket' => $configsys['qiniu_bucket'], // 七牛Bucket的名称
  11. 'host' => $configsys['qiniu_domain'],
  12. 'access_key' => $configsys['qiniu_accesskey'],
  13. 'secret_key' => $configsys['qiniu_secretkey'],
  14. /* 上传配置 */
  15. 'timeout' => '3600', // 上传时间
  16. 'save_type' => 'date', // 保存类型
  17. /* 水印设置 */
  18. 'use_water' => false, // 是否开启水印
  19. /* 七牛水印图片地址 */
  20. 'water_url' => 'http://gitwiduu.u.qiniudn.com/ueditor-bg.png',
  21. 'uploadQiniuUrl' => isset($configsys['qiniu_upurl']) ? $configsys['qiniu_upurl'] : 'http://up.qiniu.com',
  22. /* 水印显示设置 */
  23. 'dissolve' => 50, // 水印透明度
  24. 'gravity' => 'SouthEast', // 水印位置具体见文档图片说明和选项
  25. 'dx' => 10, //边距横向位置
  26. 'dy' => 10, //边距纵向位置
  27. );