Allow SES region configuration; closes #4124
This commit is contained in:
parent
8771597560
commit
21ca91abd0
2 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixes a bug causing a 404 error when attempting to delete a database from a server in the admin control panel.
|
* Fixes a bug causing a 404 error when attempting to delete a database from a server in the admin control panel.
|
||||||
* Fixes console input auto-capitalizing and auto-correcting when entering text on some mobile devices.
|
* Fixes console input auto-capitalizing and auto-correcting when entering text on some mobile devices.
|
||||||
|
* Fixes SES service configuration using a hard-coded `us-east-1` region.
|
||||||
|
|
||||||
## v1.8.1
|
## v1.8.1
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -26,7 +26,7 @@ return [
|
||||||
'ses' => [
|
'ses' => [
|
||||||
'key' => env('SES_KEY'),
|
'key' => env('SES_KEY'),
|
||||||
'secret' => env('SES_SECRET'),
|
'secret' => env('SES_SECRET'),
|
||||||
'region' => 'us-east-1',
|
'region' => env('SES_REGION', 'us-east-1'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'sparkpost' => [
|
'sparkpost' => [
|
||||||
|
|
Loading…
Reference in a new issue