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.
|
|
|
|
*/
|
|
|
|
'service' => [
|
2017-03-12 06:00:06 +01:00
|
|
|
'core' => 'ptrdctyl-v040-11e6-8b77-86f30ca893d3',
|
2017-03-11 00:25:12 +01:00
|
|
|
'author' => env('SERVICE_AUTHOR'),
|
|
|
|
],
|
|
|
|
|
2017-03-17 00:54:31 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Pagination
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Certain pagination result counts can be configured here and will take
|
|
|
|
| effect globally.
|
|
|
|
*/
|
|
|
|
'paginate' => [
|
|
|
|
'frontend' => [
|
|
|
|
'servers' => 15,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
2017-03-11 00:25:12 +01:00
|
|
|
];
|