Guest User

Untitled

a guest
Jul 23rd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. DB_CONNECTION=mysql
  2. DB_HOST=192.xxx.x.xxx
  3. DB_PORT=3306
  4. DB_DATABASE=reporting
  5. DB_USERNAME=mywel6902
  6. DB_PASSWORD=xxxxxxx
  7.  
  8. 'mysql' => [
  9. 'driver' => 'mysql',
  10. 'host' => env('DB_HOST', '192.xxx.x.xxx'),
  11. 'port' => env('DB_PORT', '3306'),
  12. 'database' => env('DB_DATABASE', 'reporting'),
  13. 'username' => env('DB_USERNAME', 'mywel6902'),
  14. 'password' => env('DB_PASSWORD', 'xxxxxxx'),
  15. 'unix_socket' => env('DB_SOCKET', ''),
  16. 'charset' => 'utf8mb4',
  17. 'collation' => 'utf8mb4_unicode_ci',
  18. 'prefix' => '',
  19. 'strict' => true,
  20. 'engine' => null,
  21. ],
Add Comment
Please, Sign In to add comment