Guest User

Untitled

a guest
Oct 2nd, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. APP_NAME="Multi-Tenant"
  2. APP_ENV=local
  3. APP_KEY=base64:j1aLzU7m5LWK1keo/FjgbtpwTpVZ1NBj29zuXIByHek=
  4. APP_DEBUG=true
  5. APP_URL_BASE=localhost:8888/lms/public
  6. APP_URL=http://${APP_URL_BASE}
  7.  
  8. LOG_CHANNEL=stack
  9.  
  10. DB_CONNECTION=system
  11. DB_HOST=127.0.0.1
  12. DB_PORT=8889
  13. DB_DATABASE=lmssystem
  14. DB_USERNAME=lmssystem
  15. DB_PASSWORD=lmssystem
  16.  
  17. BROADCAST_DRIVER=log
  18. CACHE_DRIVER=file
  19. QUEUE_CONNECTION=sync
  20. SESSION_DRIVER=file
  21. SESSION_LIFETIME=120
  22.  
  23. REDIS_HOST=127.0.0.1
  24. REDIS_PASSWORD=null
  25. REDIS_PORT=6379
  26.  
  27. MAIL_DRIVER=smtp
  28. MAIL_HOST=smtp.mailtrap.io
  29. MAIL_PORT=2525
  30. MAIL_USERNAME=null
  31. MAIL_PASSWORD=null
  32. MAIL_ENCRYPTION=null
  33.  
  34. PUSHER_APP_ID=
  35. PUSHER_APP_KEY=
  36. PUSHER_APP_SECRET=
  37. PUSHER_APP_CLUSTER=mt1
  38.  
  39. MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
  40. MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
  41.  
  42. LIMIT_UUID_LENGTH32=true
  43.  
  44. return [
  45. 'default' => env('DB_CONNECTION', 'system'),
  46. 'connections' => [
  47.  
  48. 'system' => [
  49. 'driver' => 'mysql',
  50. 'host' => env('DB_HOST', '127.0.0.1'),
  51. 'port' => env('DB_PORT', '8889'),
  52. 'database' => env('DB_DATABASE', 'lmssystem'),
  53. 'username' => env('DB_USERNAME', 'lmssystem'),
  54. 'password' => env('DB_PASSWORD', 'lmssystem'),
  55. 'unix_socket' => env('DB_SOCKET', ''),
  56. 'charset' => 'utf8mb4',
  57. 'collation' => 'utf8mb4_unicode_ci',
  58. 'prefix' => '',
  59. 'strict' => true,
  60. 'engine' => 'InnoDB',
  61. ],
  62. ],
  63. 'migrations' => 'migrations',
  64. 'redis' => [
  65.  
  66. 'client' => 'predis',
  67.  
  68. 'default' => [
  69. 'host' => env('REDIS_HOST', '127.0.0.1'),
  70. 'password' => env('REDIS_PASSWORD', null),
  71. 'port' => env('REDIS_PORT', 6379),
  72. 'database' => env('REDIS_DB', 0),
  73. ],
  74.  
  75. 'cache' => [
  76. 'host' => env('REDIS_HOST', '127.0.0.1'),
  77. 'password' => env('REDIS_PASSWORD', null),
  78. 'port' => env('REDIS_PORT', 6379),
  79. 'database' => env('REDIS_CACHE_DB', 1),
  80. ],
  81.  
  82. ],
  83.  
  84. ];
Add Comment
Please, Sign In to add comment