1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Changed default keys to be 32 length

This commit is contained in:
Hillel Coren 2016-07-27 12:21:42 +03:00
parent ecd6422156
commit 6d5f69f4fa
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
APP_ENV=production
APP_DEBUG=false
APP_URL=http://ninja.dev
APP_KEY=SomeRandomString
APP_KEY=SomeRandomStringSomeRandomString
APP_CIPHER=AES-256-CBC
DB_TYPE=mysql

View File

@ -82,7 +82,7 @@ return [
|
*/
'key' => env('APP_KEY', 'SomeRandomString'),
'key' => env('APP_KEY', 'SomeRandomStringSomeRandomString'),
'cipher' => env('APP_CIPHER', 'AES-256-CBC'),