sys.php 555 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 以下配置为系统级的配置,通常放置不同环境下的不同配置
  4. *
  5. * @license http://www.phalapi.net/license GPL 协议
  6. * @link http://www.phalapi.net/
  7. * @author dogstar <chanzonghuang@gmail.com> 2017-07-13
  8. */
  9. return array(
  10. /**
  11. * 默认环境配置
  12. */
  13. 'debug' => false,
  14. /**
  15. * MC缓存服务器参考配置
  16. */
  17. 'mc' => array(
  18. 'host' => '127.0.0.1',
  19. 'port' => 11211,
  20. ),
  21. /**
  22. * 加密
  23. */
  24. 'crypt' => array(
  25. 'mcrypt_iv' => '12345678', //8位
  26. ),
  27. );