File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 22
33return  [
44    /* 
5-     |-------------------------------------------------------------------------- 
6-     | Encryption Key and Cipher 
7-     |-------------------------------------------------------------------------- 
8-     */ 
9- 
5+      * The default key used for all file encryption / decryption 
6+      * This package will look for a FILE_VAULT_KEY in your env file 
7+      * If no FILE_VAULT_KEY is found, then it will use your Laravel APP_KEY 
8+      */ 
109    'key '  => env ('FILE_VAULT_KEY ' , env ('APP_KEY ' )),
1110
11+     /* 
12+      * The cipher used for encryption. 
13+      * Supported options are AES-128-CBC and AES-256-CBC 
14+      */ 
1215    'cipher '  => 'AES-256-CBC ' ,
1316
1417    /* 
15-     |-------------------------------------------------------------------------- 
16-     | Default storage disk 
17-     |-------------------------------------------------------------------------- 
18-     */ 
19- 
18+      * The Storage disk used by default to locate your files. 
19+      */ 
2020    'disk '  => 'local ' ,
2121];
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments