database.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Database Connection Name
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here you may specify which of the database connections below you wish
  9. | to use as your default connection for all database work. Of course
  10. | you may use many connections at once using the Database library.
  11. |
  12. */
  13. 'default' => env('DB_CONNECTION', 'mysql'),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Database Connections
  17. |--------------------------------------------------------------------------
  18. |
  19. | Here are each of the database connections setup for your application.
  20. | Of course, examples of configuring each database platform that is
  21. | supported by Laravel is shown below to make development simple.
  22. |
  23. |
  24. | All database work in Laravel is done through the PHP PDO facilities
  25. | so make sure you have the driver for your particular database of
  26. | choice installed on your machine before you begin development.
  27. |
  28. */
  29. 'connections' => [
  30. 'sqlite' => [
  31. 'driver' => 'sqlite',
  32. 'database' => env('DB_DATABASE', database_path('database.sqlite')),
  33. 'prefix' => '',
  34. 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
  35. ],
  36. // 'mysql' => [
  37. // 'driver' => 'mysql',
  38. // 'host' => env('DB_HOST', '127.0.0.1'),
  39. // 'port' => env('DB_PORT', '3306'),
  40. // 'database' => env('DB_DATABASE', 'forge'),
  41. // 'username' => env('DB_USERNAME', 'forge'),
  42. // 'password' => env('DB_PASSWORD', ''),
  43. // 'unix_socket' => env('DB_SOCKET', ''),
  44. // 'charset' => 'utf8mb4',
  45. // 'collation' => 'utf8mb4_unicode_ci',
  46. // 'prefix' => '',
  47. // 'prefix_indexes' => true,
  48. // 'strict' => true,
  49. // 'engine' => null,
  50. // ],
  51. /* We get the database info from dokku command:
  52. * dokku mysql:info detective_db --dsn
  53. * dokku config:set detective DATABASE_URL= {url from command above}
  54. * parse_url() will transform that in an array
  55. */
  56. 'mysql' => [
  57. 'driver' => 'mysql',
  58. 'host' => parse_url(getenv("DATABASE_URL"))["host"],
  59. 'database' => substr(parse_url(getenv("DATABASE_URL"))["path"], 1),
  60. 'username' => parse_url(getenv("DATABASE_URL"))["user"],
  61. 'password' => parse_url(getenv("DATABASE_URL"))["pass"],
  62. 'port' => parse_url(getenv("DATABASE_URL"))["port"],
  63. 'unix_socket' => env('DB_SOCKET', ''),
  64. 'charset' => 'utf8mb4',
  65. 'collation' => 'utf8mb4_unicode_ci',
  66. 'prefix' => '',
  67. 'strict' => true,
  68. 'engine' => null,
  69. ],
  70. 'pgsql' => [
  71. 'driver' => 'pgsql',
  72. 'host' => env('DB_HOST', '127.0.0.1'),
  73. 'port' => env('DB_PORT', '5432'),
  74. 'database' => env('DB_DATABASE', 'forge'),
  75. 'username' => env('DB_USERNAME', 'forge'),
  76. 'password' => env('DB_PASSWORD', ''),
  77. 'charset' => 'utf8',
  78. 'prefix' => '',
  79. 'prefix_indexes' => true,
  80. 'schema' => 'public',
  81. 'sslmode' => 'prefer',
  82. ],
  83. 'sqlsrv' => [
  84. 'driver' => 'sqlsrv',
  85. 'host' => env('DB_HOST', 'localhost'),
  86. 'port' => env('DB_PORT', '1433'),
  87. 'database' => env('DB_DATABASE', 'forge'),
  88. 'username' => env('DB_USERNAME', 'forge'),
  89. 'password' => env('DB_PASSWORD', ''),
  90. 'charset' => 'utf8',
  91. 'prefix' => '',
  92. 'prefix_indexes' => true,
  93. ],
  94. ],
  95. /*
  96. |--------------------------------------------------------------------------
  97. | Migration Repository Table
  98. |--------------------------------------------------------------------------
  99. |
  100. | This table keeps track of all the migrations that have already run for
  101. | your application. Using this information, we can determine which of
  102. | the migrations on disk haven't actually been run in the database.
  103. |
  104. */
  105. 'migrations' => 'migrations',
  106. /*
  107. |--------------------------------------------------------------------------
  108. | Redis Databases
  109. |--------------------------------------------------------------------------
  110. |
  111. | Redis is an open source, fast, and advanced key-value store that also
  112. | provides a richer body of commands than a typical key-value system
  113. | such as APC or Memcached. Laravel makes it easy to dig right in.
  114. |
  115. */
  116. 'redis' => [
  117. 'client' => 'predis',
  118. 'default' => [
  119. 'host' => env('REDIS_HOST', '127.0.0.1'),
  120. 'password' => env('REDIS_PASSWORD', null),
  121. 'port' => env('REDIS_PORT', 6379),
  122. 'database' => env('REDIS_DB', 0),
  123. ],
  124. 'cache' => [
  125. 'host' => env('REDIS_HOST', '127.0.0.1'),
  126. 'password' => env('REDIS_PASSWORD', null),
  127. 'port' => env('REDIS_PORT', 6379),
  128. 'database' => env('REDIS_CACHE_DB', 1),
  129. ],
  130. ],
  131. ];