misc_pterodactyl-panel/config/services.php

40 lines
1.1 KiB
PHP
Raw Normal View History

<?php
return [
/*
|--------------------------------------------------------------------------
2022-02-26 16:15:20 +00:00
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
2022-02-26 16:15:20 +00:00
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
2022-02-26 16:15:20 +00:00
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
],
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
'mandrill' => [
'secret' => env('MANDRILL_SECRET'),
],
'ses' => [
2022-02-26 16:15:20 +00:00
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
2017-04-01 21:59:43 +00:00
'sparkpost' => [
'secret' => env('SPARKPOST_SECRET'),
],
];