Adress last comment

This commit is contained in:
Nicolas Le Goff
2013-06-27 14:02:31 +02:00
committed by Romain Neutron
parent 2ea0f3af41
commit b5dbd37740
11 changed files with 48 additions and 67 deletions

View File

@@ -38,7 +38,7 @@ class XSendFileMappingNginxDumper extends Command
foreach ($this->container['phraseanet.xsendfile-mapping']->getMapping() as $entry) {
$output->writeln(' location ' . $mapper->sanitizeMountPoint($entry['mount-point']) . ' {');
$output->writeln(' internal;');
$output->writeln(' alias ' . $mapper->sanitizePath($entry['directory']));
$output->writeln(' alias ' . $mapper->sanitizePath($entry['directory']) . ';');
$output->writeln(' }');
$output->writeln('');
}