We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8771597 commit 21ca91aCopy full SHA for 21ca91a
CHANGELOG.md
@@ -7,6 +7,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
7
### Fixed
8
* Fixes a bug causing a 404 error when attempting to delete a database from a server in the admin control panel.
9
* Fixes console input auto-capitalizing and auto-correcting when entering text on some mobile devices.
10
+* Fixes SES service configuration using a hard-coded `us-east-1` region.
11
12
## v1.8.1
13
config/services.php
@@ -26,7 +26,7 @@
26
'ses' => [
27
'key' => env('SES_KEY'),
28
'secret' => env('SES_SECRET'),
29
- 'region' => 'us-east-1',
+ 'region' => env('SES_REGION', 'us-east-1'),
30
],
31
32
'sparkpost' => [
0 commit comments