Fixes bug introduced during admin rewrite that broke server creation
This commit is contained in:
parent
be60299089
commit
4ad09c5435
4 changed files with 60 additions and 50 deletions
|
@ -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),
|
||||
],
|
||||
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue