-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.php-DEVELOPMENT
31 lines (28 loc) · 1.02 KB
/
config.php-DEVELOPMENT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* eZ Publish 5.x config.php file
*
* Returns global application settings
* Usually contain settings needed to setup services needed for ezp startup.
*
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
* @version //autogentag//
*
* @doc Copy this file to config.php to get started!
*/
// Optional: only for development, comment in production
error_reporting( E_ALL | E_STRICT );
// Required: Settings bellow are runtime settings that needs to be set here, you can
// optionally also override any other setting here.
return array(
// The cache directory
'cache_dir' => __DIR__ . "/var/cache",
// The Legacy Kernel installation directory, detect legacy location
'legacy_dir' => (
is_dir( './ezpublish_legacy' ) ?
getcwd() . '/ezpublish_legacy' :
__DIR__ . '/vendor/netgen/ezpublish-legacy'
),
'imagemagick_convert_path' => '/usr/bin/convert'
);