Guest User

Untitled

a guest
Apr 1st, 2018
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. # --------------------------------------------
  2. # REQUIRED: BASIC APP SETTINGS
  3. # --------------------------------------------
  4. APP_ENV=production
  5. APP_DEBUG=false
  6. APP_KEY=ChangeMe
  7. APP_URL=null
  8. APP_TIMEZONE='UTC'
  9. APP_LOCALE=en
  10.  
  11.  
  12. config('app.env');
  13. config('app.debug');
  14. config('app.key');
  15. config('app.timezone');
  16. config('app.locale');
  17.  
  18.  
  19.  
  20. # --------------------------------------------
  21. # REQUIRED: DATABASE SETTINGS
  22. # --------------------------------------------
  23. DB_CONNECTION=mysql
  24. DB_HOST=127.0.0.1
  25. DB_DATABASE=null
  26. DB_USERNAME=null
  27. DB_PASSWORD=null
  28. DB_PREFIX=null
  29. DB_DUMP_PATH='/usr/bin'
  30. DB_CHARSET=utf8mb4
  31. DB_COLLATION=utf8mb4_unicode_ci
  32.  
  33.  
  34. config('database.connections.mysql.host');
  35. config('database.connections.mysql.database');
  36. config('database.connections.mysql.username');
  37. config('database.connections.mysql.password');
  38. config('database.connections.mysql.prefix');
  39. config('database.connections.mysql.dump_command_path');
  40. config('database.connections.mysql.charset');
  41. config('database.connections.mysql.collation');
  42.  
  43.  
  44. # --------------------------------------------
  45. # REQUIRED: OUTGOING MAIL SERVER SETTINGS
  46. # --------------------------------------------
  47. MAIL_DRIVER=smtp
  48. MAIL_HOST=email-smtp.us-west-2.amazonaws.com
  49. MAIL_PORT=587
  50. MAIL_USERNAME=YOURUSERNAME
  51. MAIL_PASSWORD=YOURPASSWORD
  52. MAIL_ENCRYPTION=null
  53. MAIL_FROM_ADDR=you@example.com
  54. MAIL_FROM_NAME='Snipe-IT'
  55. MAIL_REPLYTO_ADDR=you@example.com
  56. MAIL_REPLYTO_NAME='Snipe-IT'
  57.  
  58.  
  59. config('mail.driver');
  60. config('mail.host');
  61. config('mail.port');
  62. config('mail.username');
  63. config('mail.password');
  64. config('mail.encryption');
  65. config('mail.from.address');
  66. config('mail.from.name');
  67. config('mail.reply_to.address');
  68. config('mail.reply_to.name');
Add Comment
Please, Sign In to add comment