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.5 KiB
46 lines
1.5 KiB
Index: owncloud/config/config.sample.php |
|
--- 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 @@ |
|
* 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', |
|
|
|
/** |
|
* 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' => [ |
|
- 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' |
|
], |
|
|
|
@@ -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', |
|
|
|
/** |
|
* Prevent cache changes due to changes in the filesystem
|
|
|