Move cipher into the .env

This commit is contained in:
snipe 2017-01-09 19:41:24 -08:00
parent 57d2b88900
commit b4bed2a11f
2 changed files with 2 additions and 1 deletions

View file

@ -93,3 +93,4 @@ APP_LOCKED=false
FILESYSTEM_DISK=local
APP_TRUSTED_PROXIES=192.168.1.1,10.0.0.1
ALLOW_IFRAMING=false
APP_CIPHER=AES-256-CBC

View file

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