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.
61 lines
1.8 KiB
61 lines
1.8 KiB
Index: nextcloud/config/config.sample.php |
|
--- nextcloud/config/config.sample.php.orig 2018-12-10 11:21:25.000000000 +0100 |
|
+++ nextcloud/config/config.sample.php 2018-12-21 17:48:51.286451000 +0100 |
|
@@ -79,7 +79,7 @@ |
|
* |
|
* Default to ``data/`` in the Nextcloud directory. |
|
*/ |
|
-'datadirectory' => '/var/www/nextcloud/data', |
|
+'datadirectory' => '@l_prefix@/var/nextcloud/data', |
|
|
|
/** |
|
* The current version number of your Nextcloud installation. This is set up |
|
@@ -888,7 +888,7 @@ |
|
*/ |
|
'apps_paths' => array( |
|
array( |
|
- 'path'=> '/var/www/nextcloud/apps', |
|
+ 'path'=> '@l_prefix@/lib/nextcloud/apps', |
|
'url' => '/apps', |
|
'writable' => true, |
|
), |
|
@@ -1180,18 +1180,18 @@ |
|
/** |
|
* Server details for one or more memcached servers to use for memory caching. |
|
*/ |
|
-'memcached_servers' => array( |
|
+/* 'memcached_servers' => array( |
|
// hostname, port and optional weight. Also see: |
|
// http://www.php.net/manual/en/memcached.addservers.php |
|
// http://www.php.net/manual/en/memcached.addserver.php |
|
array('localhost', 11211), |
|
//array('other.host.local', 11211), |
|
-), |
|
+), */ |
|
|
|
/** |
|
* Connection options for memcached, see http://apprize.info/php/scaling/15.html |
|
*/ |
|
-'memcached_options' => array( |
|
+/* 'memcached_options' => array( |
|
// Set timeouts to 50ms |
|
\Memcached::OPT_CONNECT_TIMEOUT => 50, |
|
\Memcached::OPT_RETRY_TIMEOUT => 50, |
|
@@ -1210,7 +1210,7 @@ |
|
|
|
// Binary serializer vill be enabled if the igbinary PECL module is available |
|
//\Memcached::OPT_SERIALIZER => \Memcached::SERIALIZER_IGBINARY, |
|
-), |
|
+), */ |
|
|
|
|
|
/** |
|
@@ -1349,7 +1349,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' |
|
), |
|
|
|
|