Home
DevCentral
Search
Configure Global Search
Log In
Transactions
T894
Change Details
Change Details
Old
New
Diff
Could also be for #upstream — config/app.php contains: ` 'cipher' => MCRYPT_RIJNDAEL_128,` Debian servers don't install mcrypt by default, our Docker image does. As Laravel uses that, it's reasonable their composer.json contains `"ext-mcrypt": "*",`. If rejected upstream, we should add us add it to our composer.json for non Docker users.
Pre-5.1 config/app.php contains: ` 'cipher' => MCRYPT_RIJNDAEL_128,` Debian servers don't install mcrypt by default, our Docker image does. Now Laravel starter template offers another cipher and to get rid of a default value for APP_KEY: ```name=config/app.php,lang=php /* |-------------------------------------------------------------------------- | Encryption Key |-------------------------------------------------------------------------- | | This key is used by the Illuminate encrypter service and should be set | to a random, 32 character string, otherwise these encrypted strings | will not be safe. Please do this before deploying an application! | */ 'key' => env('APP_KEY'), 'cipher' => 'AES-256-CBC', ```
Could also be for #upstream —
Pre-5.1
config/app.php contains: ` 'cipher' => MCRYPT_RIJNDAEL_128,` Debian servers don't install mcrypt by default, our Docker image does.
As Laravel uses that
Now Laravel starter template offers another cipher and to get rid of a default value for APP_KEY: ```name=config/app.php,lang=php /* |-------------------------------------------------------------------------- | Encryption Key |-------------------------------------------------------------------------- | | This key is used by the Illuminate encrypter service and should be set | to a random, 32 character string
,
it's reasonabl
otherwis
e the
ir composer.json contains
se encrypted strings
`"ext-mcrypt": "*",`
| will not be safe
.
If rejected upstream, we should add us add it to our composer.json for non Docker users.
Please do this before deploying an application! | */ 'key' => env('APP_KEY'), 'cipher' => 'AES-256-CBC', ```
Continue