app.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * 请在下面放置任何您需要的应用配置
  4. */
  5. return array(
  6. /**
  7. * 应用接口层的统一参数
  8. */
  9. 'apiCommonRules' => array(
  10. ),
  11. 'REDIS_HOST' => "127.0.0.1",
  12. // 'REDIS_AUTH' => "123456",
  13. 'REDIS_PORT' => "6379",
  14. 'sign_key' => '76576076c1f5f657b634e966c8836a06',
  15. 'uptype'=>2,//上传方式:1表示 七牛,2表示 本地
  16. /**
  17. * 七牛相关配置
  18. */
  19. 'Qiniu' => array(
  20. //统一的key
  21. 'accessKey' => 'OLiUdKXk-gATXjnIjY6jvwzCLWVuAJgJ72-PE5ir',
  22. 'secretKey' => 'Lr1shddlTjBCsn6gEOyJqO66NPA_7RMh_EvfZ2P8',
  23. //自定义配置的空间
  24. 'space_bucket' => 'testvideo',
  25. 'space_host' => 'http://ybtestvideo.yunbaozb.com',
  26. //区域上传域名(服务端) 参考文档:https://developer.qiniu.com/kodo/manual/1671/region-endpoint
  27. 'uphost' => 'https://up.qiniup.com',
  28. //七牛云存储区域 华东:z0,华北:z1,华南:z2,北美:na0,东南亚:as0,参考文档:https://developer.qiniu.com/kodo/manual/1671/
  29. 'region'=>'z0',
  30. ),
  31. /**
  32. * 本地上传
  33. */
  34. 'UCloudEngine' => 'local',
  35. /**
  36. * 本地存储相关配置(UCloudEngine为local时的配置)
  37. */
  38. 'UCloud' => array(
  39. //对应的文件路径 站点域名
  40. 'host' => 'http://admin.zbo458v5.top/PhalApi/Public/upload'
  41. ),
  42. );