Guest User

Untitled

a guest
Oct 16th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. 'disks' => [
  2.  
  3. 'local' => [
  4. 'driver' => 'local',
  5. 'root' => storage_path('app'),
  6. ],
  7.  
  8. 'public' => [
  9. 'driver' => 'local',
  10. 'root' => storage_path('app/public'),
  11. 'url' => env('APP_URL').'/storage',
  12. 'visibility' => 'public',
  13. ],
  14.  
  15. 's3' => [
  16. 'driver' => 's3',
  17. 'key' => env('AWS_KEY'),
  18. 'secret' => env('AWS_SECRET'),
  19. 'region' => env('AWS_REGION'),
  20. 'bucket' => env('AWS_BUCKET'),
  21. ],
  22.  
  23. ],
  24.  
  25. 'disks' => [
  26. 'admin' => [
  27. 'driver' => 'local',
  28. 'root' => storage_path('app'),
  29. ],
  30.  
  31. 'local' => [
  32. 'driver' => 'local',
  33. 'root' => storage_path('app'),
  34. ],
  35.  
  36. 'public' => [
  37. 'driver' => 'local',
  38. 'root' => storage_path('app/public'),
  39. 'url' => env('APP_URL').'/storage',
  40. 'visibility' => 'public',
  41. ],
  42.  
  43. 's3' => [
  44. 'driver' => 's3',
  45. 'key' => env('AWS_KEY'),
  46. 'secret' => env('AWS_SECRET'),
  47. 'region' => env('AWS_REGION'),
  48. 'bucket' => env('AWS_BUCKET'),
  49. ],
  50.  
  51. ],
Add Comment
Please, Sign In to add comment