Files
UNIT3D-Community-Edition/config/hitrun.php
T
2017-12-12 21:50:27 -05:00

93 lines
2.3 KiB
PHP

<?php
/**
* NOTICE OF LICENSE
*
* UNIT3D is open-sourced software licensed under the GNU General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D
* @license https://choosealicense.com/licenses/gpl-3.0/ GNU General Public License v3.0
* @author BluCrew
*/
return [
/*
|--------------------------------------------------------------------------
| Enabled
|--------------------------------------------------------------------------
|
| Hit and Run On / Off
|
*/
'enabled' => true,
/*
|--------------------------------------------------------------------------
| Seedtime
|--------------------------------------------------------------------------
|
| Min Seedtime Required In Seconds
|
*/
'seedtime' => 604800,
/*
|--------------------------------------------------------------------------
| Max Warnings
|--------------------------------------------------------------------------
|
| Max Warnings Before Ban
|
*/
'max_warnings' => 3,
/*
|--------------------------------------------------------------------------
| Download Rights Disable
|--------------------------------------------------------------------------
|
| Max Warnings Before Download Rights Are Disabled
|
*/
'download_disable' => 2,
/*
|--------------------------------------------------------------------------
| Grace Period
|--------------------------------------------------------------------------
|
| Max Grace Time For User To Be Disconnected If "Seedtime" Value
| Is Not Yet Met. "In Days"
|
*/
'grace' => 3,
/*
|--------------------------------------------------------------------------
| Buffer
|--------------------------------------------------------------------------
|
| Percentage Buffer of Torrent thats checked against 'actual_downloaded'
|
*/
'buffer' => 3,
/*
|--------------------------------------------------------------------------
| Warning Expire
|--------------------------------------------------------------------------
|
| Max Days A Warning Lasts Before Expiring "In Days"
|
*/
'expire' => 14,
];