Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/config/services.php
7382 views
1
<?php
2
3
return [
4
/*
5
|--------------------------------------------------------------------------
6
| Third Party Services
7
|--------------------------------------------------------------------------
8
|
9
| This file is for storing the credentials for third party services such
10
| as Mailgun, Postmark, AWS and more. This file provides the de facto
11
| location for this type of information, allowing packages to have
12
| a conventional file to locate the various service credentials.
13
|
14
*/
15
16
'postmark' => [
17
'token' => env('POSTMARK_TOKEN'),
18
],
19
20
'ses' => [
21
'key' => env('AWS_ACCESS_KEY_ID'),
22
'secret' => env('AWS_SECRET_ACCESS_KEY'),
23
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
24
],
25
26
'resend' => [
27
'key' => env('RESEND_KEY'),
28
],
29
30
'slack' => [
31
'notifications' => [
32
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
33
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
34
],
35
],
36
];
37
38