Skip to content

Commit f07af08

Browse files
committed
Improve config file
1 parent 12c9a7b commit f07af08

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

config/config.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
return [
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
];

0 commit comments

Comments
 (0)