Skip to content

Commit

Permalink
EZP-32255: Default IO configuration before applying generic or p.sh (#29
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Nattfarinn committed Dec 31, 2020
1 parent a7102fd commit c4e0d11
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ public function getAlias(): string

public function prepend(ContainerBuilder $container): void
{
$loader = new Loader\YamlFileLoader(
$container,
new FileLocator(__DIR__ . '/../Resources/config')
);
$loader->load('default_settings.yaml');

$this->configureGenericSetup($container);
$this->configurePlatformShSetup($container);

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
parameters:
ibexa.platform.io.nfs.adapter.config:
root: './'
path: '$var_dir$/$storage_dir$/'
writeFlags: ~
linkHandling: ~
permissions: [ ]

0 comments on commit c4e0d11

Please sign in to comment.