main-local.php 469 B

123456789101112131415161718192021222324
  1. <?php
  2. $config = [
  3. 'bootstrap' => ['debug', 'gii'],
  4. 'modules' => [
  5. 'debug' => [
  6. 'class' => 'yii\debug\Module',
  7. 'allowedIPs' => ['*'],
  8. ],
  9. 'gii' => [
  10. 'class' => 'yii\gii\Module',
  11. 'allowedIPs' => ['127.0.0.1', '::1'],
  12. ],
  13. ],
  14. 'components' => [
  15. 'db' => [
  16. 'class' => 'yii\db\Connection',
  17. 'dsn' => 'mysql:host=127.0.0.1;dbname=huahuibao',
  18. 'username' => 'root',
  19. 'password' => 'zt20152008',
  20. 'charset' => 'utf8',
  21. ],
  22. ],
  23. ];
  24. return $config;