2017-03-11 00:25:12 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Service Author
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Each panel installation is assigned a unique UUID to identify the
|
|
|
|
| author of custom services, and make upgrades easier by identifying
|
|
|
|
| standard Pterodactyl shipped services.
|
|
|
|
*/
|
2017-03-17 02:11:15 +01:00
|
|
|
'service' => [
|
|
|
|
'core' => 'ptrdctyl-v040-11e6-8b77-86f30ca893d3',
|
|
|
|
'author' => env('SERVICE_AUTHOR'),
|
|
|
|
],
|
2017-03-11 00:25:12 +01:00
|
|
|
|
2017-03-17 00:54:31 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Pagination
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Certain pagination result counts can be configured here and will take
|
|
|
|
| effect globally.
|
|
|
|
*/
|
2017-03-17 02:11:15 +01:00
|
|
|
'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),
|
|
|
|
],
|
2017-03-17 00:54:31 +01:00
|
|
|
|
2017-03-18 20:56:19 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Queue Names
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Configure the names of queues to be used in the database.
|
|
|
|
*/
|
|
|
|
'queues' => [
|
|
|
|
'low' => env('QUEUE_LOW', 'low'),
|
|
|
|
'standard' => env('QUEUE_STANDARD', 'standard'),
|
|
|
|
'high' => env('QUEUE_HIGH', 'high'),
|
|
|
|
],
|
|
|
|
|
2017-03-19 16:04:03 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Console Configuration
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Configure the speed at which data is rendered to the console.
|
|
|
|
*/
|
|
|
|
'console' => [
|
|
|
|
'count' => env('CONSOLE_PUSH_COUNT', 10),
|
|
|
|
'frequency' => env('CONSOLE_PUSH_FREQ', 200),
|
|
|
|
],
|
|
|
|
|
2017-03-18 20:56:19 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Task Timers
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The amount of time in minutes before performing certain actions on the system.
|
|
|
|
*/
|
|
|
|
'tasks' => [
|
|
|
|
'clear_log' => env('PTERODACTYL_CLEAR_TASKLOG', 720),
|
|
|
|
'delete_server' => env('PTERODACTYL_DELETE_MINUTES', 10),
|
|
|
|
],
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| CDN
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Information for the panel to use when contacting the CDN to confirm
|
|
|
|
| if panel is up to date.
|
|
|
|
*/
|
|
|
|
'cdn' => [
|
|
|
|
'cache' => 60,
|
|
|
|
'url' => 'https://cdn.pterodactyl.io/releases/latest.json',
|
|
|
|
],
|
2017-03-11 00:25:12 +01:00
|
|
|
];
|