main.config.php 613 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /*
  3. *---------------------------------------------------------------
  4. * Main CCF configuration
  5. *---------------------------------------------------------------
  6. *
  7. * Take a look at the core main configuration file to see
  8. * what options are around. .../CCF/vendor/clancats/core/config/main.config.php
  9. */
  10. return array(
  11. /*
  12. * URL configuration
  13. */
  14. 'url' => array(
  15. // if not in the root directory set the path offset.
  16. 'path' => '/',
  17. ),
  18. /*
  19. * Security
  20. */
  21. 'security' => array(
  22. // it is really important that you choose your own one!
  23. 'salt' => '7Q[„YI[œ1<-2S3Ck[%¼Sz59vQ!sl1aœÃ',
  24. ),
  25. );