mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-19 06:43:45 +02:00
Fixes bug introduced during admin rewrite that broke server creation
This commit is contained in:
@@ -11,10 +11,10 @@ return [
|
||||
| author of custom services, and make upgrades easier by identifying
|
||||
| standard Pterodactyl shipped services.
|
||||
*/
|
||||
'service' => [
|
||||
'core' => 'ptrdctyl-v040-11e6-8b77-86f30ca893d3',
|
||||
'author' => env('SERVICE_AUTHOR'),
|
||||
],
|
||||
'service' => [
|
||||
'core' => 'ptrdctyl-v040-11e6-8b77-86f30ca893d3',
|
||||
'author' => env('SERVICE_AUTHOR'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -24,10 +24,22 @@ return [
|
||||
| Certain pagination result counts can be configured here and will take
|
||||
| effect globally.
|
||||
*/
|
||||
'paginate' => [
|
||||
'frontend' => [
|
||||
'servers' => 15,
|
||||
],
|
||||
],
|
||||
'paginate' => [
|
||||
'frontend' => [
|
||||
'servers' => 15,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Guzzle Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Configure the timeout to be used for Guzzle connections here.
|
||||
*/
|
||||
'guzzle' => [
|
||||
'timeout' => env('GUZZLE_TIMEOUT', 5),
|
||||
'connect_timeout' => env('GUZZLE_CONNECT_TIMEOUT', 3),
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user