Enhance XSendFileMapping to handle apache

Update xsendfile
This commit is contained in:
Nicolas Le Goff
2013-07-01 12:29:41 +02:00
parent 6c62fe7d16
commit 8e31a692cb
31 changed files with 803 additions and 394 deletions

View File

@@ -28,8 +28,7 @@ use Alchemy\Phrasea\CLI;
use Alchemy\Phrasea\Command\Plugin\AddPlugin;
use Alchemy\Phrasea\Command\Plugin\RemovePlugin;
use Alchemy\Phrasea\Command\CheckConfig;
use Alchemy\Phrasea\Command\Setup\XSendFileMappingNginxDumper;
use Alchemy\Phrasea\Command\Setup\XSendFileMappingApacheDumper;
use Alchemy\Phrasea\Command\Setup\XSendFileMappingDumper;
require_once __DIR__ . '/../lib/autoload.php';
@@ -98,8 +97,7 @@ try {
$app->command(new AddPlugin());
$app->command(new RemovePlugin());
$app->command(new Configuration());
$app->command(new XSendFileMappingNginxDumper());
$app->command(new XSendFileMappingApacheDumper());
$app->command(new XSendFileMappingDumper());
$result_code = is_int($app->run()) ? : 1;
} catch (\Exception $e) {