2 changed files with 30 additions and 30 deletions
@ -1,46 +1,46 @@
|
||||
Index: owncloud/config/config.sample.php
|
||||
--- owncloud/config/config.sample.php.orig 2019-10-15 12:57:13.000000000 +0200
|
||||
+++ owncloud/config/config.sample.php 2019-10-17 20:44:36.376895000 +0200
|
||||
--- owncloud/config/config.sample.php.orig 2019-12-05 17:07:35.000000000 +0100
|
||||
+++ owncloud/config/config.sample.php 2019-12-10 20:37:51.946696000 +0100
|
||||
@@ -80,7 +80,7 @@
|
||||
* directory. The SQLite database is also stored here, when you use SQLite.
|
||||
* 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
|
||||
@@ -758,13 +758,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,
|
||||
),
|
||||
@@ -1123,7 +1123,7 @@
|
||||
* Current version number of your ownCloud installation
|
||||
@@ -800,13 +800,13 @@
|
||||
'apps_paths' => [
|
||||
0 =>
|
||||
[
|
||||
- 'path' => OC::$SERVERROOT.'/apps',
|
||||
+ 'path' => '@l_prefix@/lib/owncloud/apps',
|
||||
'url' => '/apps',
|
||||
'writable' => false,
|
||||
],
|
||||
1 =>
|
||||
[
|
||||
- 'path' => OC::$SERVERROOT.'/apps-external',
|
||||
+ 'path' => '@l_prefix@/lib/owncloud/apps-external',
|
||||
'url' => '/apps-external',
|
||||
'writable' => true,
|
||||
],
|
||||
@@ -1182,7 +1182,7 @@
|
||||
* encryption in MySQL or specify a custom wait timeout on a cheap hoster.
|
||||
*/
|
||||
'dbdriveroptions' => array(
|
||||
'dbdriveroptions' => [
|
||||
- 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_SSL_CA => '/file/path/to/ca_cert.pem', */
|
||||
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET wait_timeout = 28800'
|
||||
),
|
||||
],
|
||||
|
||||
@@ -1301,7 +1301,7 @@
|
||||
* Where `mount.json` file should be stored, defaults to `data/mount.json`
|
||||
* in the ownCloud directory.
|
||||
@@ -1377,7 +1377,7 @@
|
||||
* Define the location of `mount.json`
|
||||
* 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
|
||||
* Prevent cache changes due to changes in the filesystem
|
||||
|
Loading…
Reference in new issue