mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-07-02 23:25:41 +00:00
initial commit
This commit is contained in:
5
rutorrent/rootfs/var/www/torrent/plugins/create/conf.php
Normal file
5
rutorrent/rootfs/var/www/torrent/plugins/create/conf.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
$useExternal = 'mktorrent';
|
||||
$pathToCreatetorrent = '/usr/local/bin/mktorrent';
|
||||
$recentTrackersMaxCount = 15;
|
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
$fm['tempdir'] = '/tmp'; // path were to store temporary data ; must be writable
|
||||
$fm['mkdperm'] = 755; // default permission to set to new created directories
|
||||
|
||||
$pathToExternals['rar'] = '/usr/bin/rar';
|
||||
$pathToExternals['zip'] = '/usr/bin/zip';
|
||||
$pathToExternals['unzip'] = '/usr/bin/unzip';
|
||||
$pathToExternals['tar'] = '/bin/tar';
|
||||
$pathToExternals['gzip'] = '/bin/gzip';
|
||||
$pathToExternals['bzip2'] = '/bin/bzip2';
|
||||
|
||||
$fm['archive']['types'] = array('rar', 'zip', 'tar', 'gzip', 'bzip2');
|
||||
$fm['archive']['compress'][0] = range(0, 5);
|
||||
$fm['archive']['compress'][1] = array('-0', '-1', '-9');
|
||||
$fm['archive']['compress'][2] = $fm['archive']['compress'][3] = $fm['archive']['compress'][4] = array(0);
|
||||
|
||||
?>
|
Reference in New Issue
Block a user