Left file: appwork-v1_5_2/laravel-starter/config/filesystems.php  
Right file: appwork-v1_6_0/laravel-starter/config/filesystems.php  
1 <?php = 1 <?php
2     2  
3 return [   3 return [
4     4  
5     /*   5     /*
6     |--------------------------------------------------------------------------   6     |--------------------------------------------------------------------------
7     | Default Filesystem Disk   7     | Default Filesystem Disk
8     |--------------------------------------------------------------------------   8     |--------------------------------------------------------------------------
9     |   9     |
10     | Here you may specify the default filesystem disk that should be used   10     | Here you may specify the default filesystem disk that should be used
11     | by the framework. The "local" disk, as well as a variety of cloud   11     | by the framework. The "local" disk, as well as a variety of cloud
12     | based disks are available to your application. Just store away!   12     | based disks are available to your application. Just store away!
13     |   13     |
14     */   14     */
15     15  
16     'default' => env('FILESYSTEM_DRIVER', 'local'),   16     'default' => env('FILESYSTEM_DRIVER', 'local'),
17     17  
18     /*   18     /*
19     |--------------------------------------------------------------------------   19     |--------------------------------------------------------------------------
20     | Default Cloud Filesystem Disk +-    
21     |--------------------------------------------------------------------------      
22     |      
23     | Many applications store files both locally and in the cloud. For this      
24     | reason, you may specify a default "cloud" driver here. This driver      
25     | will be bound as the Cloud disk implementation in the container.      
26     |      
27     */      
28        
29     'cloud' => env('FILESYSTEM_CLOUD', 's3'),      
30        
31     /*      
32     |--------------------------------------------------------------------------      
33     | Filesystem Disks = 20     | Filesystem Disks
34     |--------------------------------------------------------------------------   21     |--------------------------------------------------------------------------
35     |   22     |
36     | Here you may configure as many filesystem "disks" as you wish, and you   23     | Here you may configure as many filesystem "disks" as you wish, and you
37     | may even configure multiple disks of the same driver. Defaults have   24     | may even configure multiple disks of the same driver. Defaults have
38     | been setup for each driver as an example of the required options.   25     | been setup for each driver as an example of the required options.
39     |   26     |
40     | Supported Drivers: "local", "ftp", "sftp", "s3"   27     | Supported Drivers: "local", "ftp", "sftp", "s3"
41     |   28     |
42     */   29     */
43     30  
44     'disks' => [   31     'disks' => [
45     32  
46         'local' => [   33         'local' => [
47             'driver' => 'local',   34             'driver' => 'local',
48             'root' => storage_path('app'),   35             'root' => storage_path('app'),
49         ],   36         ],
50     37  
51         'public' => [   38         'public' => [
52             'driver' => 'local',   39             'driver' => 'local',
53             'root' => storage_path('app/public'),   40             'root' => storage_path('app/public'),
54             'url' => env('APP_URL').'/storage',   41             'url' => env('APP_URL').'/storage',
55             'visibility' => 'public',   42             'visibility' => 'public',
56         ],   43         ],
57     44  
58         's3' => [   45         's3' => [
59             'driver' => 's3',   46             'driver' => 's3',
60             'key' => env('AWS_ACCESS_KEY_ID'),   47             'key' => env('AWS_ACCESS_KEY_ID'),
61             'secret' => env('AWS_SECRET_ACCESS_KEY'),   48             'secret' => env('AWS_SECRET_ACCESS_KEY'),
62             'region' => env('AWS_DEFAULT_REGION'),   49             'region' => env('AWS_DEFAULT_REGION'),
63             'bucket' => env('AWS_BUCKET'),   50             'bucket' => env('AWS_BUCKET'),
64             'url' => env('AWS_URL'),   51             'url' => env('AWS_URL'),
    -+ 52             'endpoint' => env('AWS_ENDPOINT'),
65         ], = 53         ],
66     54  
67     ],   55     ],
68     56  
69     /*   57     /*
70     |--------------------------------------------------------------------------   58     |--------------------------------------------------------------------------
71     | Symbolic Links   59     | Symbolic Links
72     |--------------------------------------------------------------------------   60     |--------------------------------------------------------------------------
73     |   61     |
74     | Here you may configure the symbolic links that will be created when the   62     | Here you may configure the symbolic links that will be created when the
75     | `storage:link` Artisan command is executed. The array keys should be   63     | `storage:link` Artisan command is executed. The array keys should be
76     | the locations of the links and the values should be their targets.   64     | the locations of the links and the values should be their targets.
77     |   65     |
78     */   66     */
79     67  
80     'links' => [   68     'links' => [
81         public_path('storage') => storage_path('app/public'),   69         public_path('storage') => storage_path('app/public'),
82     ],   70     ],
83     71  
84 ];   72 ];