Skip to content

Commit 21ca91a

Browse files
committed
Allow SES region configuration; closes pterodactyl#4124
1 parent 8771597 commit 21ca91a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
77
### Fixed
88
* Fixes a bug causing a 404 error when attempting to delete a database from a server in the admin control panel.
99
* 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.
1011

1112
## v1.8.1
1213
### Fixed

config/services.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'ses' => [
2727
'key' => env('SES_KEY'),
2828
'secret' => env('SES_SECRET'),
29-
'region' => 'us-east-1',
29+
'region' => env('SES_REGION', 'us-east-1'),
3030
],
3131

3232
'sparkpost' => [

0 commit comments

Comments
 (0)