You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
Index: owncloud/config/config.sample.php |
|
--- owncloud/config/config.sample.php.orig 2018-04-19 18:15:51.000000000 +0200 |
|
+++ owncloud/config/config.sample.php 2018-04-27 20:06:56.082620000 +0200 |
|
@@ -80,7 +80,7 @@ |
|
* directory. The SQLite database is also stored here, when you use SQLite. |
|
* (SQLite is not available in ownCloud Enterprise Edition) |
|
*/ |
|
-'datadirectory' => '/var/www/owncloud/data', |
|
+'datadirectory' => '@l_prefix@/var/owncloud/data', |
|
|
|
/** |
|
* The current version number of your ownCloud installation. This is set up |
|
@@ -752,13 +752,13 @@ |
|
array ( |
|
0 => |
|
array ( |
|
- 'path' => OC::$SERVERROOT.'/apps', |
|
+ 'path' => '@l_prefix@/lib/owncloud/apps', |
|
'url' => '/apps', |
|
'writable' => false, |
|
), |
|
1 => |
|
array ( |
|
- 'path' => OC::$SERVERROOT.'/apps-external', |
|
+ 'path' => '@l_prefix@/lib/owncloud/apps-external', |
|
'url' => '/apps-external', |
|
'writable' => true, |
|
), |
|
@@ -1156,7 +1156,7 @@ |
|
* encryption in MySQL or specify a custom wait timeout on a cheap hoster. |
|
*/ |
|
'dbdriveroptions' => array( |
|
- PDO::MYSQL_ATTR_SSL_CA => '/file/path/to/ca_cert.pem', |
|
+ /* PDO::MYSQL_ATTR_SSL_CA => '/file/path/to/ca_cert.pem', */ |
|
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET wait_timeout = 28800' |
|
), |
|
|
|
@@ -1333,7 +1333,7 @@ |
|
* Where ``mount.json`` file should be stored, defaults to ``data/mount.json`` |
|
* in the ownCloud directory. |
|
*/ |
|
-'mount_file' => '/var/www/owncloud/data/mount.json', |
|
+'mount_file' => '@l_prefix@/var/owncloud/data/mount.json', |
|
|
|
/** |
|
* When ``true``, prevent ownCloud from changing the cache due to changes in the
|
|
|