2011-04-16 14:18:42 +04:00
|
|
|
|
<?php
|
|
|
|
|
|
2014-05-29 19:43:59 +04:00
|
|
|
|
/**
|
2014-10-07 11:35:21 +04:00
|
|
|
|
* This configuration file is only provided to document the different
|
|
|
|
|
* configuration options and their usage.
|
|
|
|
|
*
|
|
|
|
|
* DO NOT COMPLETELY BASE YOUR CONFIGURATION FILE ON THIS SAMPLE. THIS MAY BREAK
|
2014-10-14 21:00:20 +04:00
|
|
|
|
* YOUR INSTANCE. Instead, manually copy configuration switches that you
|
2014-10-17 02:35:51 +04:00
|
|
|
|
* consider important for your instance to your working ``config.php``, and
|
2014-10-14 21:00:20 +04:00
|
|
|
|
* apply configuration options that are pertinent for your instance.
|
2014-10-07 16:14:19 +04:00
|
|
|
|
*
|
2016-10-01 13:17:55 +03:00
|
|
|
|
* This file is used to generate the configuration documentation.
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* Please consider following requirements of the current parser:
|
2014-10-07 16:14:19 +04:00
|
|
|
|
* * all comments need to start with `/**` and end with ` *\/` - each on their
|
|
|
|
|
* own line
|
|
|
|
|
* * add a `@see CONFIG_INDEX` to copy a previously described config option
|
|
|
|
|
* also to this line
|
|
|
|
|
* * everything between the ` *\/` and the next `/**` will be treated as the
|
|
|
|
|
* config option
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* * use RST syntax
|
2014-05-29 19:43:59 +04:00
|
|
|
|
*/
|
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
|
$CONFIG = [
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* Default Parameters
|
|
|
|
|
*
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* These parameters are configured by the Nextcloud installer, and are required
|
|
|
|
|
* for your Nextcloud server to operate.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* This is a unique identifier for your Nextcloud installation, created
|
2014-10-14 21:00:20 +04:00
|
|
|
|
* automatically by the installer. This example is for documentation only,
|
|
|
|
|
* and you should never use it because it will not work. A valid ``instanceid``
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* is created when you install Nextcloud.
|
2014-10-15 03:57:45 +04:00
|
|
|
|
*
|
|
|
|
|
* 'instanceid' => 'd3c944a9a',
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-17 02:35:51 +04:00
|
|
|
|
'instanceid' => '',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-15 03:57:45 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* The salt used to hash all passwords, auto-generated by the Nextcloud
|
2015-03-02 12:44:18 +03:00
|
|
|
|
* installer. (There are also per-user salts.) If you lose this salt you lose
|
|
|
|
|
* all your passwords. This example is for documentation only, and you should
|
|
|
|
|
* never use it.
|
|
|
|
|
*
|
|
|
|
|
* @deprecated This salt is deprecated and only used for legacy-compatibility,
|
|
|
|
|
* developers should *NOT* use this value for anything nowadays.
|
|
|
|
|
*
|
|
|
|
|
* 'passwordsalt' => 'd3c944a9af095aa08f',
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-17 02:35:51 +04:00
|
|
|
|
'passwordsalt' => '',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Your list of trusted domains that users can log into. Specifying trusted
|
|
|
|
|
* domains prevents host header poisoning. Do not remove this, as it performs
|
|
|
|
|
* necessary security checks.
|
2016-07-07 19:23:20 +03:00
|
|
|
|
* You can specify:
|
2016-07-13 15:30:50 +03:00
|
|
|
|
*
|
2016-07-07 19:23:20 +03:00
|
|
|
|
* - the exact hostname of your host or virtual host, e.g. demo.example.org.
|
|
|
|
|
* - the exact hostname with permitted port, e.g. demo.example.org:443.
|
|
|
|
|
* This disallows all other ports on this host
|
|
|
|
|
* - use * as a wildcard, e.g. ubos-raspberry-pi*.local will allow
|
|
|
|
|
* ubos-raspberry-pi.local and ubos-raspberry-pi-2.local
|
2020-02-23 11:38:19 +03:00
|
|
|
|
* - the IP address with or without permitted port, e.g. [2001:db8::1]:8080
|
|
|
|
|
* Using TLS certificates where commonName=<IP address> is deprecated
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-17 02:35:51 +04:00
|
|
|
|
'trusted_domains' =>
|
2020-03-26 11:30:18 +03:00
|
|
|
|
[
|
2014-10-14 21:00:20 +04:00
|
|
|
|
'demo.example.org',
|
2014-11-13 13:15:47 +03:00
|
|
|
|
'otherdomain.example.org',
|
2020-02-23 11:38:19 +03:00
|
|
|
|
'10.111.112.113',
|
|
|
|
|
'[2001:db8::1]'
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2014-10-10 20:42:58 +04:00
|
|
|
|
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* Where user files are stored. The SQLite database is also stored here, when
|
|
|
|
|
* you use SQLite.
|
|
|
|
|
*
|
|
|
|
|
* Default to ``data/`` in the Nextcloud directory.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'datadirectory' => '/var/www/nextcloud/data',
|
2012-06-08 14:31:37 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* The current version number of your Nextcloud installation. This is set up
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* during installation and update, so you shouldn't need to change it.
|
|
|
|
|
*/
|
|
|
|
|
'version' => '',
|
|
|
|
|
|
|
|
|
|
/**
|
2014-12-03 10:52:59 +03:00
|
|
|
|
* Identifies the database used with this installation. See also config option
|
|
|
|
|
* ``supportedDatabases``
|
|
|
|
|
*
|
|
|
|
|
* Available:
|
2018-02-26 20:42:27 +03:00
|
|
|
|
* - sqlite3 (SQLite3)
|
2015-01-14 20:38:43 +03:00
|
|
|
|
* - mysql (MySQL/MariaDB)
|
2014-12-03 10:52:59 +03:00
|
|
|
|
* - pgsql (PostgreSQL)
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2018-02-26 20:42:27 +03:00
|
|
|
|
* Defaults to ``sqlite3``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2018-02-26 20:42:27 +03:00
|
|
|
|
'dbtype' => 'sqlite3',
|
2014-08-26 21:02:40 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Your host server name, for example ``localhost``, ``hostname``,
|
|
|
|
|
* ``hostname.example.com``, or the IP address. To specify a port use
|
|
|
|
|
* ``hostname:####``; to specify a Unix socket use
|
|
|
|
|
* ``localhost:/path/to/socket``.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'dbhost' => '',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* The name of the Nextcloud database, which is set during installation. You
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* should not need to change this.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'dbname' => 'nextcloud',
|
2013-02-04 02:03:06 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* The user that Nextcloud uses to write to the database. This must be unique
|
|
|
|
|
* across Nextcloud instances using the same SQL database. This is set up during
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* installation, so you shouldn't need to change it.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'dbuser' => '',
|
2012-11-22 22:22:00 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* The password for the database user. This is set up during installation, so
|
|
|
|
|
* you shouldn't need to change it.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'dbpassword' => '',
|
2012-11-22 22:22:00 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Prefix for the Nextcloud tables in the database.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Default to ``oc_``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'dbtableprefix' => '',
|
2012-09-09 14:54:47 +04:00
|
|
|
|
|
2015-07-30 14:57:04 +03:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Indicates whether the Nextcloud instance was installed successfully; ``true``
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* indicates a successful installation, and ``false`` indicates an unsuccessful
|
|
|
|
|
* installation.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'installed' => false,
|
2013-01-06 15:24:40 +04:00
|
|
|
|
|
2012-12-14 21:52:16 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* User Experience
|
|
|
|
|
*
|
|
|
|
|
* These optional parameters control some aspects of the user interface. Default
|
|
|
|
|
* values, where present, are shown.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2012-12-14 21:52:16 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* This sets the default language on your Nextcloud server, using ISO_639-1
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* language codes such as ``en`` for English, ``de`` for German, and ``fr`` for
|
|
|
|
|
* French. It overrides automatic language detection on public pages like login
|
|
|
|
|
* or shared items. User's language preferences configured under "personal ->
|
2017-12-01 18:15:44 +03:00
|
|
|
|
* language" override this setting after they have logged in. Nextcloud has two
|
|
|
|
|
* distinguished language codes for German, 'de' and 'de_DE'. 'de' is used for
|
|
|
|
|
* informal German and 'de_DE' for formal German. By setting this value to 'de_DE'
|
|
|
|
|
* you can enforce the formal version of German unless the user has chosen
|
|
|
|
|
* something different explicitly.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``en``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'default_language' => 'en',
|
2014-02-18 19:26:37 +04:00
|
|
|
|
|
2017-06-21 12:22:05 +03:00
|
|
|
|
/**
|
|
|
|
|
* With this setting a language can be forced for all users. If a language is
|
|
|
|
|
* forced, the users are also unable to change their language in the personal
|
|
|
|
|
* settings. If users shall be unable to change their language, but users have
|
|
|
|
|
* different languages, this value can be set to ``true`` instead of a language
|
|
|
|
|
* code.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
|
|
|
|
*/
|
|
|
|
|
'force_language' => 'en',
|
|
|
|
|
|
2017-07-13 11:34:27 +03:00
|
|
|
|
/**
|
|
|
|
|
* This sets the default locale on your Nextcloud server, using ISO_639
|
|
|
|
|
* language codes such as ``en`` for English, ``de`` for German, and ``fr`` for
|
|
|
|
|
* French, and ISO-3166 country codes such as ``GB``, ``US``, ``CA``, as defined
|
|
|
|
|
* in RFC 5646. It overrides automatic locale detection on public pages like
|
|
|
|
|
* login or shared items. User's locale preferences configured under "personal
|
|
|
|
|
* -> locale" override this setting after they have logged in.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``en``
|
|
|
|
|
*/
|
|
|
|
|
'default_locale' => 'en_US',
|
|
|
|
|
|
2020-12-03 13:12:41 +03:00
|
|
|
|
/**
|
|
|
|
|
* This sets the default region for phone numbers on your Nextcloud server,
|
|
|
|
|
* using ISO 3166-1 country codes such as ``DE`` for Germany, ``FR`` for France, …
|
|
|
|
|
* It is required to allow inserting phone numbers in the user profiles starting
|
|
|
|
|
* without the country code (e.g. +49 for Germany).
|
|
|
|
|
*
|
|
|
|
|
* No default value!
|
|
|
|
|
*/
|
2020-12-17 11:14:21 +03:00
|
|
|
|
'default_phone_region' => 'GB',
|
2020-12-03 13:12:41 +03:00
|
|
|
|
|
2017-07-13 11:34:27 +03:00
|
|
|
|
/**
|
|
|
|
|
* With this setting a locale can be forced for all users. If a locale is
|
|
|
|
|
* forced, the users are also unable to change their locale in the personal
|
|
|
|
|
* settings. If users shall be unable to change their locale, but users have
|
|
|
|
|
* different languages, this value can be set to ``true`` instead of a locale
|
|
|
|
|
* code.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
|
|
|
|
*/
|
|
|
|
|
'force_locale' => 'en_US',
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Set the default app to open on login. Use the app names as they appear in the
|
|
|
|
|
* URL after clicking them in the Apps menu, such as documents, calendar, and
|
|
|
|
|
* gallery. You can use a comma-separated list of app names, so if the first
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* app is not enabled for a user then Nextcloud will try the second one, and so
|
2021-01-08 11:49:12 +03:00
|
|
|
|
* on. If no enabled apps are found it defaults to the dashboard app.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2021-01-08 11:49:12 +03:00
|
|
|
|
* Defaults to ``dashboard,files``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2021-01-08 11:49:12 +03:00
|
|
|
|
'defaultapp' => 'dashboard,files',
|
2014-08-27 01:58:13 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* ``true`` enables the Help menu item in the user menu (top right of the
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Nextcloud Web interface). ``false`` removes the Help item.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'knowledgebaseenabled' => true,
|
2014-08-27 01:58:13 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* ``true`` allows users to change their display names (on their Personal
|
|
|
|
|
* pages), and ``false`` prevents them from changing their display names.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'allow_user_to_change_display_name' => true,
|
2013-08-02 11:41:31 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2019-01-22 18:16:55 +03:00
|
|
|
|
* Lifetime of the remember login cookie. This should be larger than the
|
|
|
|
|
* session_lifetime. If it is set to 0 remember me is disabled.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``60*60*24*15`` seconds (15 days)
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'remember_login_cookie_lifetime' => 60*60*24*15,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* The lifetime of a session after inactivity.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``60*60*24`` seconds (24 hours)
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'session_lifetime' => 60 * 60 * 24,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Enable or disable session keep-alive when a user is logged in to the Web UI.
|
|
|
|
|
* Enabling this sends a "heartbeat" to the server to keep it from timing out.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'session_keepalive' => true,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2020-04-03 23:43:21 +03:00
|
|
|
|
/**
|
|
|
|
|
* Enable or disable the automatic logout after session_lifetime, even if session
|
|
|
|
|
* keepalive is enabled. This will make sure that an inactive browser will be logged out
|
|
|
|
|
* even if requests to the server might extend the session lifetime.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
|
|
|
|
*/
|
|
|
|
|
'auto_logout' => false,
|
|
|
|
|
|
2016-05-24 17:18:27 +03:00
|
|
|
|
/**
|
|
|
|
|
* Enforce token authentication for clients, which blocks requests using the user
|
|
|
|
|
* password for enhanced security. Users need to generate tokens in personal settings
|
|
|
|
|
* which can be used as passwords on their clients.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2016-05-24 17:18:27 +03:00
|
|
|
|
*/
|
|
|
|
|
'token_auth_enforced' => false,
|
|
|
|
|
|
2020-09-18 13:34:43 +03:00
|
|
|
|
/**
|
|
|
|
|
* The interval at which token activity should be updated.
|
|
|
|
|
* Increasing this value means that the last activty on the security page gets
|
|
|
|
|
* more outdated.
|
|
|
|
|
*
|
|
|
|
|
* Tokens are still checked every 5 minutes for validity
|
|
|
|
|
* max value: 300
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``300``
|
|
|
|
|
*/
|
|
|
|
|
'token_auth_activity_update' => 60,
|
|
|
|
|
|
2016-07-20 19:36:15 +03:00
|
|
|
|
/**
|
|
|
|
|
* Whether the bruteforce protection shipped with Nextcloud should be enabled or not.
|
|
|
|
|
*
|
|
|
|
|
* Disabling this is discouraged for security reasons.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2016-07-20 19:36:15 +03:00
|
|
|
|
*/
|
|
|
|
|
'auth.bruteforce.protection.enabled' => true,
|
|
|
|
|
|
2020-02-09 22:06:08 +03:00
|
|
|
|
/**
|
|
|
|
|
* By default WebAuthn is available but it can be explicitly disabled by admins
|
|
|
|
|
*/
|
|
|
|
|
'auth.webauthn.enabled' => true,
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* The directory where the skeleton files are located. These files will be
|
|
|
|
|
* copied to the data directory of new users. Leave empty to not copy any
|
|
|
|
|
* skeleton files.
|
2017-11-29 11:50:40 +03:00
|
|
|
|
* ``{lang}`` can be used as a placeholder for the language of the user.
|
|
|
|
|
* If the directory does not exist, it falls back to non dialect (from ``de_DE``
|
2017-12-08 14:28:41 +03:00
|
|
|
|
* to ``de``). If that does not exist either, it falls back to ``default``
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``core/skeleton`` in the Nextcloud directory.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'skeletondirectory' => '/path/to/nextcloud/core/skeleton',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2021-01-19 13:20:50 +03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The directory where the template files are located. These files will be
|
|
|
|
|
* copied to the template directory of new users. Leave empty to not copy any
|
|
|
|
|
* template files.
|
|
|
|
|
* ``{lang}`` can be used as a placeholder for the language of the user.
|
|
|
|
|
* If the directory does not exist, it falls back to non dialect (from ``de_DE``
|
|
|
|
|
* to ``de``). If that does not exist either, it falls back to ``default``
|
|
|
|
|
*
|
|
|
|
|
* If this is not set creating a template directory will only happen if no custom
|
|
|
|
|
* ``skeletondirectory`` is defined, otherwise the shipped templates will be used
|
|
|
|
|
* to create a template directory for the user.
|
|
|
|
|
*/
|
2021-02-26 01:21:27 +03:00
|
|
|
|
'templatedirectory' => '/path/to/nextcloud/templates',
|
2021-01-19 13:20:50 +03:00
|
|
|
|
|
2015-12-07 17:37:26 +03:00
|
|
|
|
/**
|
2017-05-11 11:15:49 +03:00
|
|
|
|
* If your user backend does not allow password resets (e.g. when it's a
|
2015-12-07 17:37:26 +03:00
|
|
|
|
* read-only user backend like LDAP), you can specify a custom link, where the
|
|
|
|
|
* user is redirected to, when clicking the "reset password" link after a failed
|
|
|
|
|
* login-attempt.
|
2017-04-19 13:35:05 +03:00
|
|
|
|
* In case you do not want to provide any link, replace the url with 'disabled'
|
2015-12-07 17:37:26 +03:00
|
|
|
|
*/
|
|
|
|
|
'lost_password_link' => 'https://example.org/link/to/password/reset',
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* Mail Parameters
|
|
|
|
|
*
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* These configure the email settings for Nextcloud notifications and password
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* resets.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* The return address that you want to appear on emails sent by the Nextcloud
|
2016-07-06 09:59:38 +03:00
|
|
|
|
* server, for example ``nc-admin@example.com``, substituting your own domain,
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* of course.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_domain' => 'example.com',
|
2013-03-26 12:49:51 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* FROM address that overrides the built-in ``sharing-noreply`` and
|
|
|
|
|
* ``lostpassword-noreply`` FROM addresses.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to different from addresses depending on the feature.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'mail_from_address' => 'nextcloud',
|
2014-01-24 19:24:52 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Enable SMTP class debugging.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_smtpdebug' => false,
|
2013-01-22 17:24:00 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2018-06-07 21:36:17 +03:00
|
|
|
|
* Which mode to use for sending mail: ``sendmail``, ``smtp`` or ``qmail``.
|
2014-10-09 01:01:46 +04:00
|
|
|
|
*
|
|
|
|
|
* If you are using local or remote SMTP, set this to ``smtp``.
|
|
|
|
|
*
|
|
|
|
|
* For the ``sendmail`` option you need an installed and working email system on
|
|
|
|
|
* the server, with ``/usr/sbin/sendmail`` installed on your Unix system.
|
|
|
|
|
*
|
|
|
|
|
* For ``qmail`` the binary is /var/qmail/bin/sendmail, and it must be installed
|
|
|
|
|
* on your Unix system.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2018-06-07 21:36:17 +03:00
|
|
|
|
* Defaults to ``smtp``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2018-06-07 21:36:17 +03:00
|
|
|
|
'mail_smtpmode' => 'smtp',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2015-08-17 20:38:42 +03:00
|
|
|
|
* This depends on ``mail_smtpmode``. Specify the IP address of your mail
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* server host. This may contain multiple hosts separated by a semi-colon. If
|
|
|
|
|
* you need to specify the port number append it to the IP address separated by
|
|
|
|
|
* a colon, like this: ``127.0.0.1:24``.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``127.0.0.1``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_smtphost' => '127.0.0.1',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* This depends on ``mail_smtpmode``. Specify the port for sending mail.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``25``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_smtpport' => 25,
|
2013-01-02 22:04:08 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2015-08-17 20:38:42 +03:00
|
|
|
|
* This depends on ``mail_smtpmode``. This sets the SMTP server timeout, in
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* seconds. You may need to increase this if you are running an anti-malware or
|
|
|
|
|
* spam scanner.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``10`` seconds
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_smtptimeout' => 10,
|
2013-01-22 17:24:00 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2019-11-19 12:35:17 +03:00
|
|
|
|
* This depends on ``mail_smtpmode``. Specify when you are using ``ssl`` for SSL/TLS or
|
|
|
|
|
* ``tls`` for STARTTLS, or leave empty for no encryption.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_smtpsecure' => '',
|
2013-01-22 17:24:00 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* This depends on ``mail_smtpmode``. Change this to ``true`` if your mail
|
|
|
|
|
* server requires authentication.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2012-06-08 00:47:18 +04:00
|
|
|
|
*/
|
2014-10-07 11:35:21 +04:00
|
|
|
|
'mail_smtpauth' => false,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* This depends on ``mail_smtpmode``. If SMTP authentication is required, choose
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* the authentication type as ``LOGIN`` or ``PLAIN``.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``LOGIN``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_smtpauthtype' => 'LOGIN',
|
2013-01-26 15:04:06 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* This depends on ``mail_smtpauth``. Specify the username for authenticating to
|
|
|
|
|
* the SMTP server.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_smtpname' => '',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* This depends on ``mail_smtpauth``. Specify the password for authenticating to
|
|
|
|
|
* the SMTP server.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Default to ``''`` (empty string)
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'mail_smtppassword' => '',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2018-04-16 16:55:39 +03:00
|
|
|
|
/**
|
|
|
|
|
* Replaces the default mail template layout. This can be utilized if the
|
|
|
|
|
* options to modify the mail texts with the theming app is not enough.
|
|
|
|
|
* The class must extend ``\OC\Mail\EMailTemplate``
|
|
|
|
|
*/
|
|
|
|
|
'mail_template_class' => '\OC\Mail\EMailTemplate',
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Email will be send by default with an HTML and a plain text body. This option
|
|
|
|
|
* allows to only send plain text emails.
|
|
|
|
|
*/
|
|
|
|
|
'mail_send_plaintext_only' => false,
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
2018-11-30 23:06:44 +03:00
|
|
|
|
/**
|
|
|
|
|
* This depends on ``mail_smtpmode``. Array of additional streams options that
|
|
|
|
|
* will be passed to underlying Swift mailer implementation.
|
|
|
|
|
* Defaults to an empty array.
|
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'mail_smtpstreamoptions' => [],
|
2018-11-30 23:06:44 +03:00
|
|
|
|
|
2018-11-13 01:26:35 +03:00
|
|
|
|
/**
|
|
|
|
|
* Which mode is used for sendmail/qmail: ``smtp`` or ``pipe``.
|
|
|
|
|
*
|
|
|
|
|
* For ``smtp`` the sendmail binary is started with the parameter ``-bs``:
|
|
|
|
|
* - Use the SMTP protocol on standard input and output.
|
|
|
|
|
*
|
|
|
|
|
* For ``pipe`` the binary is started with the parameters ``-t``:
|
|
|
|
|
* - Read message from STDIN and extract recipients.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``smtp``
|
|
|
|
|
*/
|
|
|
|
|
'mail_sendmailmode' => 'smtp',
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* Proxy Configurations
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* The automatic hostname detection of Nextcloud can fail in certain reverse
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* proxy and CLI/cron situations. This option allows you to manually override
|
|
|
|
|
* the automatic detection; for example ``www.example.com``, or specify the port
|
|
|
|
|
* ``www.example.com:8080``.
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
|
|
|
|
'overwritehost' => '',
|
|
|
|
|
|
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* When generating URLs, Nextcloud attempts to detect whether the server is
|
|
|
|
|
* accessed via ``https`` or ``http``. However, if Nextcloud is behind a proxy
|
|
|
|
|
* and the proxy handles the ``https`` calls, Nextcloud would not know that
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* ``ssl`` is in use, which would result in incorrect URLs being generated.
|
|
|
|
|
* Valid values are ``http`` and ``https``.
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
|
|
|
|
'overwriteprotocol' => '',
|
|
|
|
|
|
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Nextcloud attempts to detect the webroot for generating URLs automatically.
|
|
|
|
|
* For example, if ``www.example.com/nextcloud`` is the URL pointing to the
|
|
|
|
|
* Nextcloud instance, the webroot is ``/nextcloud``. When proxies are in use,
|
|
|
|
|
* it may be difficult for Nextcloud to detect this parameter, resulting in
|
|
|
|
|
* invalid URLs.
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
|
|
|
|
'overwritewebroot' => '',
|
|
|
|
|
|
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* This option allows you to define a manual override condition as a regular
|
|
|
|
|
* expression for the remote IP address. For example, defining a range of IP
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* addresses starting with ``10.0.0.`` and ending with 1 to 3:
|
|
|
|
|
* ``^10\.0\.0\.[1-3]$``
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
|
|
|
|
'overwritecondaddr' => '',
|
|
|
|
|
|
2014-10-13 13:18:24 +04:00
|
|
|
|
/**
|
2015-08-17 20:38:42 +03:00
|
|
|
|
* Use this configuration parameter to specify the base URL for any URLs which
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* are generated within Nextcloud using any kind of command line tools (cron or
|
2014-11-04 11:23:38 +03:00
|
|
|
|
* occ). The value should contain the full base URL:
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* ``https://www.example.com/nextcloud``
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-10-13 13:18:24 +04:00
|
|
|
|
*/
|
|
|
|
|
'overwrite.cli.url' => '',
|
|
|
|
|
|
2016-05-12 10:43:26 +03:00
|
|
|
|
/**
|
|
|
|
|
* To have clean URLs without `/index.php` this parameter needs to be configured.
|
|
|
|
|
*
|
|
|
|
|
* This parameter will be written as "RewriteBase" on update and installation of
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Nextcloud to your `.htaccess` file. While this value is often simply the URL
|
|
|
|
|
* path of the Nextcloud installation it cannot be set automatically properly in
|
2016-05-12 10:43:26 +03:00
|
|
|
|
* every scenario and needs thus some manual configuration.
|
|
|
|
|
*
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* In a standard Apache setup this usually equals the folder that Nextcloud is
|
|
|
|
|
* accessible at. So if Nextcloud is accessible via "https://mycloud.org/nextcloud"
|
|
|
|
|
* the correct value would most likely be "/nextcloud". If Nextcloud is running
|
2016-05-12 10:43:26 +03:00
|
|
|
|
* under "https://mycloud.org/" then it would be "/".
|
|
|
|
|
*
|
2017-05-11 11:15:49 +03:00
|
|
|
|
* Note that the above rule is not valid in every case, as there are some rare setup
|
2016-05-12 10:43:26 +03:00
|
|
|
|
* cases where this may not apply. However, to avoid any update problems this
|
|
|
|
|
* configuration value is explicitly opt-in.
|
|
|
|
|
*
|
2017-05-11 11:15:49 +03:00
|
|
|
|
* After setting this value run `occ maintenance:update:htaccess`. Now, when the
|
|
|
|
|
* following conditions are met Nextcloud URLs won't contain `index.php`:
|
2016-05-12 10:43:26 +03:00
|
|
|
|
*
|
|
|
|
|
* - `mod_rewrite` is installed
|
|
|
|
|
* - `mod_env` is installed
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2016-05-12 10:43:26 +03:00
|
|
|
|
*/
|
|
|
|
|
'htaccess.RewriteBase' => '/',
|
|
|
|
|
|
2016-10-01 13:17:55 +03:00
|
|
|
|
/**
|
|
|
|
|
* For server setups, that don't have `mod_env` enabled or restricted (e.g. suEXEC)
|
|
|
|
|
* this parameter has to be set to true and will assume mod_rewrite.
|
|
|
|
|
*
|
|
|
|
|
* Please check, if `mod_rewrite` is active and functional before setting this
|
|
|
|
|
* parameter and you updated your .htaccess with `occ maintenance:update:htaccess`.
|
|
|
|
|
* Otherwise your nextcloud installation might not be reachable anymore.
|
|
|
|
|
* For example, try accessing resources by leaving out `index.php` in the URL.
|
|
|
|
|
*/
|
|
|
|
|
'htaccess.IgnoreFrontController' => false,
|
|
|
|
|
|
2014-10-07 12:04:54 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* The URL of your proxy server, for example ``proxy.example.com:8081``.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2019-10-25 22:21:32 +03:00
|
|
|
|
* Note: Guzzle (the http library used by Nextcloud) is reading the environment
|
|
|
|
|
* variables HTTP_PROXY (only for cli request), HTTPS_PROXY, and NO_PROXY by default.
|
|
|
|
|
*
|
|
|
|
|
* If you configure proxy with Nextcloud any default configuration by Guzzle
|
|
|
|
|
* is overwritten. Make sure to set ``proxyexclude`` accordingly if necessary.
|
|
|
|
|
*
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
|
|
|
|
'proxy' => '',
|
|
|
|
|
|
2014-10-09 01:01:46 +04:00
|
|
|
|
/**
|
|
|
|
|
* The optional authentication for the proxy to use to connect to the internet.
|
|
|
|
|
* The format is: ``username:password``.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-10-09 01:01:46 +04:00
|
|
|
|
*/
|
|
|
|
|
'proxyuserpwd' => '',
|
|
|
|
|
|
2019-10-25 22:21:32 +03:00
|
|
|
|
/**
|
|
|
|
|
* List of host names that should not be proxied to.
|
|
|
|
|
* For example: ``['.mit.edu', 'foo.com']``.
|
|
|
|
|
*
|
|
|
|
|
* Hint: Use something like ``explode(',', getenv('NO_PROXY'))`` to sync this
|
|
|
|
|
* value with the global NO_PROXY option.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to empty array.
|
|
|
|
|
*/
|
|
|
|
|
'proxyexclude' => [],
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
2020-03-24 16:19:57 +03:00
|
|
|
|
/**
|
|
|
|
|
* Allow remote servers with local addresses e.g. in federated shares, webcal services and more
|
|
|
|
|
*
|
|
|
|
|
* Defaults to false
|
|
|
|
|
*/
|
|
|
|
|
'allow_local_remote_servers' => true,
|
|
|
|
|
|
2014-10-07 12:04:54 +04:00
|
|
|
|
/**
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* Deleted Items (trash bin)
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*
|
|
|
|
|
* These parameters control the Deleted files app.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2013-12-09 04:20:10 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2015-07-30 22:31:18 +03:00
|
|
|
|
* If the trash bin app is enabled (default), this setting defines the policy
|
|
|
|
|
* for when files and folders in the trash bin will be permanently deleted.
|
|
|
|
|
* The app allows for two settings, a minimum time for trash bin retention,
|
|
|
|
|
* and a maximum time for trash bin retention.
|
|
|
|
|
* Minimum time is the number of days a file will be kept, after which it
|
|
|
|
|
* may be deleted. Maximum time is the number of days at which it is guaranteed
|
|
|
|
|
* to be deleted.
|
|
|
|
|
* Both minimum and maximum times can be set together to explicitly define
|
|
|
|
|
* file and folder deletion. For migration purposes, this setting is installed
|
|
|
|
|
* initially set to "auto", which is equivalent to the default setting in
|
2016-07-22 10:55:38 +03:00
|
|
|
|
* Nextcloud.
|
2015-07-30 22:31:18 +03:00
|
|
|
|
*
|
|
|
|
|
* Available values:
|
2015-08-17 20:38:42 +03:00
|
|
|
|
*
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``auto``
|
|
|
|
|
* default setting. keeps files and folders in the trash bin for 30 days
|
|
|
|
|
* and automatically deletes anytime after that if space is needed (note:
|
2015-09-30 18:50:32 +03:00
|
|
|
|
* files may not be deleted if space is not needed).
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``D, auto``
|
|
|
|
|
* keeps files and folders in the trash bin for D+ days, delete anytime if
|
2015-09-30 18:50:32 +03:00
|
|
|
|
* space needed (note: files may not be deleted if space is not needed)
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``auto, D``
|
|
|
|
|
* delete all files in the trash bin that are older than D days
|
2015-09-30 18:50:32 +03:00
|
|
|
|
* automatically, delete other files anytime if space needed
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``D1, D2``
|
|
|
|
|
* keep files and folders in the trash bin for at least D1 days and
|
2020-05-04 14:25:05 +03:00
|
|
|
|
* delete when exceeds D2 days (note: files will not be deleted automatically if space is needed)
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``disabled``
|
2015-09-30 18:50:32 +03:00
|
|
|
|
* trash bin auto clean disabled, files and folders will be kept forever
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``auto``
|
2015-07-30 22:31:18 +03:00
|
|
|
|
*/
|
|
|
|
|
'trashbin_retention_obligation' => 'auto',
|
2013-12-04 17:20:29 +04:00
|
|
|
|
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
2016-03-02 14:51:04 +03:00
|
|
|
|
/**
|
|
|
|
|
* File versions
|
|
|
|
|
*
|
|
|
|
|
* These parameters control the Versions app.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-08-17 21:40:03 +03:00
|
|
|
|
/**
|
|
|
|
|
* If the versions app is enabled (default), this setting defines the policy
|
|
|
|
|
* for when versions will be permanently deleted.
|
|
|
|
|
* The app allows for two settings, a minimum time for version retention,
|
|
|
|
|
* and a maximum time for version retention.
|
|
|
|
|
* Minimum time is the number of days a version will be kept, after which it
|
|
|
|
|
* may be deleted. Maximum time is the number of days at which it is guaranteed
|
|
|
|
|
* to be deleted.
|
|
|
|
|
* Both minimum and maximum times can be set together to explicitly define
|
|
|
|
|
* version deletion. For migration purposes, this setting is installed
|
|
|
|
|
* initially set to "auto", which is equivalent to the default setting in
|
2016-07-22 10:55:38 +03:00
|
|
|
|
* Nextcloud.
|
2015-08-17 21:40:03 +03:00
|
|
|
|
*
|
|
|
|
|
* Available values:
|
2015-09-30 18:50:32 +03:00
|
|
|
|
*
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``auto``
|
|
|
|
|
* default setting. Automatically expire versions according to expire
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* rules. Please refer to :doc:`../configuration_files/file_versioning` for
|
2016-04-15 22:04:45 +03:00
|
|
|
|
* more information.
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``D, auto``
|
|
|
|
|
* keep versions at least for D days, apply expire rules to all versions
|
2015-09-30 18:50:32 +03:00
|
|
|
|
* that are older than D days
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``auto, D``
|
|
|
|
|
* delete all versions that are older than D days automatically, delete
|
2015-09-30 18:50:32 +03:00
|
|
|
|
* other versions according to expire rules
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``D1, D2``
|
2015-09-30 18:50:32 +03:00
|
|
|
|
* keep versions for at least D1 days and delete when exceeds D2 days
|
2017-02-21 20:10:38 +03:00
|
|
|
|
* * ``disabled``
|
2015-09-30 18:50:32 +03:00
|
|
|
|
* versions auto clean disabled, versions will be kept forever
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``auto``
|
2015-08-17 21:40:03 +03:00
|
|
|
|
*/
|
|
|
|
|
'versions_retention_obligation' => 'auto',
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Nextcloud Verifications
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Nextcloud performs several verification checks. There are two options,
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* ``true`` and ``false``.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2013-02-10 17:43:31 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2015-04-14 22:40:31 +03:00
|
|
|
|
* Checks an app before install whether it uses private APIs instead of the
|
2015-03-18 19:08:54 +03:00
|
|
|
|
* proper public APIs. If this is set to true it will only allow to install or
|
2015-02-27 19:50:50 +03:00
|
|
|
|
* enable apps that pass this check.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'appcodechecker' => true,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Check if Nextcloud is up-to-date and shows a notification if a new version is
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* available.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'updatechecker' => true,
|
2012-06-09 19:43:02 +04:00
|
|
|
|
|
2016-05-09 12:25:58 +03:00
|
|
|
|
/**
|
2016-06-16 16:08:00 +03:00
|
|
|
|
* URL that Nextcloud should use to look for updates
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``https://updates.nextcloud.com/updater_server/``
|
2016-05-09 12:25:58 +03:00
|
|
|
|
*/
|
2016-09-27 15:52:22 +03:00
|
|
|
|
'updater.server.url' => 'https://updates.nextcloud.com/updater_server/',
|
2016-05-09 12:25:58 +03:00
|
|
|
|
|
2016-12-06 01:46:20 +03:00
|
|
|
|
/**
|
|
|
|
|
* The channel that Nextcloud should use to look for updates
|
|
|
|
|
*
|
|
|
|
|
* Supported values:
|
|
|
|
|
* - ``daily``
|
2017-01-18 18:39:44 +03:00
|
|
|
|
* - ``beta``
|
2016-12-06 01:46:20 +03:00
|
|
|
|
* - ``stable``
|
|
|
|
|
*/
|
|
|
|
|
'updater.release.channel' => 'stable',
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Is Nextcloud connected to the Internet or running in a closed network?
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'has_internet_connection' => true,
|
2013-04-09 00:41:20 +04:00
|
|
|
|
|
2018-11-22 12:14:27 +03:00
|
|
|
|
/**
|
|
|
|
|
* Which domains to request to determine the availability of an Internet
|
|
|
|
|
* connection. If none of these hosts are reachable, the administration panel
|
|
|
|
|
* will show a warning. Set to an empty list to not do any such checks (warning
|
|
|
|
|
* will still be shown).
|
|
|
|
|
*
|
|
|
|
|
* Defaults to the following domains:
|
|
|
|
|
*
|
|
|
|
|
* - www.nextcloud.com
|
|
|
|
|
* - www.startpage.com
|
|
|
|
|
* - www.eff.org
|
|
|
|
|
* - www.edri.org
|
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'connectivity_check_domains' => [
|
2018-11-22 12:14:27 +03:00
|
|
|
|
'www.nextcloud.com',
|
|
|
|
|
'www.startpage.com',
|
|
|
|
|
'www.eff.org',
|
|
|
|
|
'www.edri.org'
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2018-11-22 12:14:27 +03:00
|
|
|
|
|
2016-01-12 11:53:23 +03:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Allows Nextcloud to verify a working .well-known URL redirects. This is done
|
2016-01-12 11:53:23 +03:00
|
|
|
|
* by attempting to make a request from JS to
|
|
|
|
|
* https://your-domain.com/.well-known/caldav/
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2016-01-12 11:53:23 +03:00
|
|
|
|
*/
|
|
|
|
|
'check_for_working_wellknown_setup' => true,
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* This is a crucial security check on Apache servers that should always be set
|
|
|
|
|
* to ``true``. This verifies that the ``.htaccess`` file is writable and works.
|
|
|
|
|
* If it is not, then any options controlled by ``.htaccess``, such as large
|
|
|
|
|
* file uploads, will not work. It also runs checks on the ``data/`` directory,
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* which verifies that it can't be accessed directly through the Web server.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'check_for_working_htaccess' => true,
|
2013-10-17 18:27:43 +04:00
|
|
|
|
|
2017-11-30 13:16:00 +03:00
|
|
|
|
/**
|
|
|
|
|
* In rare setups (e.g. on Openshift or docker on windows) the permissions check
|
|
|
|
|
* might block the installation while the underlying system offers no means to
|
|
|
|
|
* "correct" the permissions. In this case, set the value to false.
|
|
|
|
|
*
|
|
|
|
|
* In regular cases, if issues with permissions are encountered they should be
|
|
|
|
|
* adjusted accordingly. Changing the flag is discouraged.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
|
|
|
|
*/
|
|
|
|
|
'check_data_directory_permissions' => true,
|
|
|
|
|
|
2014-11-25 18:12:12 +03:00
|
|
|
|
/**
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* In certain environments it is desired to have a read-only configuration file.
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* When this switch is set to ``true`` Nextcloud will not verify whether the
|
2014-11-25 18:12:12 +03:00
|
|
|
|
* configuration is writable. However, it will not be possible to configure
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* all options via the Web interface. Furthermore, when updating Nextcloud
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* it is required to make the configuration file writable again for the update
|
2014-11-25 18:12:12 +03:00
|
|
|
|
* process.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2014-11-25 18:12:12 +03:00
|
|
|
|
*/
|
|
|
|
|
'config_is_read_only' => false,
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Logging
|
|
|
|
|
*/
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2018-06-18 21:29:31 +03:00
|
|
|
|
* This parameter determines where the Nextcloud logs are sent.
|
|
|
|
|
* ``file``: the logs are written to file ``nextcloud.log`` in the default
|
|
|
|
|
* Nextcloud data directory. The log file can be changed with parameter
|
|
|
|
|
* ``logfile``.
|
|
|
|
|
* ``syslog``: the logs are sent to the system log. This requires a syslog daemon
|
|
|
|
|
* to be active.
|
|
|
|
|
* ``errorlog``: the logs are sent to the PHP ``error_log`` function.
|
|
|
|
|
* ``systemd``: the logs are sent to the Systemd journal. This requires a system
|
|
|
|
|
* that runs Systemd and the Systemd journal. The PHP extension ``systemd``
|
|
|
|
|
* must be installed and active.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``file``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2016-07-22 12:44:19 +03:00
|
|
|
|
'log_type' => 'file',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2018-06-18 21:29:31 +03:00
|
|
|
|
* Name of the file to which the Nextcloud logs are written if parameter
|
|
|
|
|
* ``log_type`` is set to ``file``.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2016-07-04 12:50:32 +03:00
|
|
|
|
* Defaults to ``[datadirectory]/nextcloud.log``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2016-07-04 12:50:32 +03:00
|
|
|
|
'logfile' => '/var/log/nextcloud.log',
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2018-02-09 18:09:56 +03:00
|
|
|
|
/**
|
|
|
|
|
* Log file mode for the Nextcloud loggin type in octal notation.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to 0640 (writeable by user, readable by group).
|
|
|
|
|
*/
|
|
|
|
|
'logfilemode' => 0640,
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* Loglevel to start logging at. Valid values are: 0 = Debug, 1 = Info, 2 =
|
2015-09-15 19:17:59 +03:00
|
|
|
|
* Warning, 3 = Error, and 4 = Fatal. The default value is Warning.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``2``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'loglevel' => 2,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
|
2015-10-23 14:43:41 +03:00
|
|
|
|
/**
|
|
|
|
|
* If you maintain different instances and aggregate the logs, you may want
|
|
|
|
|
* to distinguish between them. ``syslog_tag`` can be set per instance
|
2018-06-18 21:29:31 +03:00
|
|
|
|
* with a unique id. Only available if ``log_type`` is set to ``syslog`` or
|
|
|
|
|
* ``systemd``.
|
|
|
|
|
*
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* The default value is ``Nextcloud``.
|
2015-10-23 14:43:41 +03:00
|
|
|
|
*/
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'syslog_tag' => 'Nextcloud',
|
2015-10-23 14:43:41 +03:00
|
|
|
|
|
2015-04-30 13:43:58 +03:00
|
|
|
|
/**
|
|
|
|
|
* Log condition for log level increase based on conditions. Once one of these
|
|
|
|
|
* conditions is met, the required log level is set to debug. This allows to
|
|
|
|
|
* debug specific requests, users or apps
|
|
|
|
|
*
|
|
|
|
|
* Supported conditions:
|
|
|
|
|
* - ``shared_secret``: if a request parameter with the name `log_secret` is set to
|
|
|
|
|
* this value the condition is met
|
|
|
|
|
* - ``users``: if the current request is done by one of the specified users,
|
|
|
|
|
* this condition is met
|
|
|
|
|
* - ``apps``: if the log message is invoked by one of the specified apps,
|
|
|
|
|
* this condition is met
|
|
|
|
|
*
|
|
|
|
|
* Defaults to an empty array.
|
|
|
|
|
*/
|
|
|
|
|
'log.condition' => [
|
|
|
|
|
'shared_secret' => '57b58edb6637fe3059b3595cf9c41b9',
|
|
|
|
|
'users' => ['sample-user'],
|
|
|
|
|
'apps' => ['files'],
|
|
|
|
|
],
|
|
|
|
|
|
2014-10-07 16:14:19 +04:00
|
|
|
|
/**
|
2020-09-17 18:23:07 +03:00
|
|
|
|
* This uses PHP.date formatting; see https://www.php.net/manual/en/function.date.php
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2017-01-31 01:52:30 +03:00
|
|
|
|
* Defaults to ISO 8601 ``2005-08-15T15:52:01+00:00`` - see \DateTime::ATOM
|
2020-09-17 18:23:07 +03:00
|
|
|
|
* (https://www.php.net/manual/en/class.datetime.php#datetime.constants.atom)
|
2014-10-07 16:14:19 +04:00
|
|
|
|
*/
|
2013-08-28 19:41:27 +04:00
|
|
|
|
'logdateformat' => 'F d, Y H:i:s',
|
|
|
|
|
|
2014-10-07 16:14:19 +04:00
|
|
|
|
/**
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* The timezone for logfiles. You may change this; see
|
2020-09-17 18:23:07 +03:00
|
|
|
|
* https://www.php.net/manual/en/timezones.php
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``UTC``
|
2014-10-07 16:14:19 +04:00
|
|
|
|
*/
|
2013-10-07 17:34:48 +04:00
|
|
|
|
'logtimezone' => 'Europe/Berlin',
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Append all database queries and parameters to the log file. Use this only for
|
|
|
|
|
* debugging, as your logfile will become huge.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'log_query' => false,
|
2013-03-31 01:36:55 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2020-08-11 15:00:26 +03:00
|
|
|
|
* Enables log rotation and limits the total size of logfiles. Set it to 0 for
|
|
|
|
|
* no rotation. Specify a size in bytes, for example 104857600 (100 megabytes
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* = 100 * 1024 * 1024 bytes). A new logfile is created with a new name when the
|
2015-08-19 14:55:39 +03:00
|
|
|
|
* old logfile reaches your limit. If a rotated log file is already present, it
|
|
|
|
|
* will be overwritten.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2018-04-11 00:52:41 +03:00
|
|
|
|
* Defaults to 100 MB
|
2013-08-28 19:41:27 +04:00
|
|
|
|
*/
|
2018-04-11 00:52:41 +03:00
|
|
|
|
'log_rotate_size' => 100 * 1024 * 1024,
|
2013-08-28 19:41:27 +04:00
|
|
|
|
|
2012-09-05 19:33:15 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* Alternate Code Locations
|
|
|
|
|
*
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Some of the Nextcloud code may be stored in alternate locations.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2013-06-26 11:19:19 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* This section is for configuring the download links for Nextcloud clients, as
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* seen in the first-run wizard and on Personal pages.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2018-08-20 12:21:23 +03:00
|
|
|
|
* Defaults to:
|
|
|
|
|
* - Desktop client: ``https://nextcloud.com/install/#install-clients``
|
|
|
|
|
* - Android client: ``https://play.google.com/store/apps/details?id=com.nextcloud.client``
|
|
|
|
|
* - iOS client: ``https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8``
|
|
|
|
|
* - iOS client app id: ``1125420102``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'customclient_desktop' =>
|
2016-12-08 14:40:52 +03:00
|
|
|
|
'https://nextcloud.com/install/#install-clients',
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'customclient_android' =>
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'https://play.google.com/store/apps/details?id=com.nextcloud.client',
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'customclient_ios' =>
|
2016-07-21 13:26:48 +03:00
|
|
|
|
'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8',
|
2018-03-26 20:12:26 +03:00
|
|
|
|
'customclient_ios_appid' =>
|
|
|
|
|
'1125420102',
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* Apps
|
|
|
|
|
*
|
|
|
|
|
* Options for the Apps folder, Apps store, and App code checker.
|
2012-06-05 19:51:41 +04:00
|
|
|
|
*/
|
2012-06-15 01:19:11 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* When enabled, admins may install apps from the Nextcloud app store.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2014-08-16 03:07:42 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
'appstoreenabled' => true,
|
2014-08-16 03:07:42 +04:00
|
|
|
|
|
2020-06-23 23:11:55 +03:00
|
|
|
|
/**
|
|
|
|
|
* Enables the installation of apps from a self hosted apps store.
|
|
|
|
|
* Requires that at least one of the configured apps directories is writeable.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``https://apps.nextcloud.com/api/v1``
|
|
|
|
|
*/
|
|
|
|
|
'appstoreurl' => 'https://apps.nextcloud.com/api/v1',
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Use the ``apps_paths`` parameter to set the location of the Apps directory,
|
|
|
|
|
* which should be scanned for available apps, and where user-specific apps
|
|
|
|
|
* should be installed from the Apps store. The ``path`` defines the absolute
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* file system path to the app folder. The key ``url`` defines the HTTP Web path
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* to that folder, starting from the Nextcloud webroot. The key ``writable``
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* indicates if a Web server can write files to that folder.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'apps_paths' => [
|
|
|
|
|
[
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'path'=> '/var/www/nextcloud/apps',
|
2012-06-15 01:00:02 +04:00
|
|
|
|
'url' => '/apps',
|
|
|
|
|
'writable' => true,
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
|
|
|
|
],
|
2014-10-07 11:35:21 +04:00
|
|
|
|
|
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* @see appcodechecker
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* Previews
|
|
|
|
|
*
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Nextcloud supports previews of image files, the covers of MP3 files, and text
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* files. These options control enabling and disabling previews, and thumbnail
|
|
|
|
|
* size.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* By default, Nextcloud can generate previews for the following filetypes:
|
2014-10-17 02:57:35 +04:00
|
|
|
|
*
|
2015-08-17 20:38:42 +03:00
|
|
|
|
* - Image files
|
2014-10-17 02:57:35 +04:00
|
|
|
|
* - Covers of MP3 files
|
|
|
|
|
* - Text documents
|
|
|
|
|
*
|
2014-10-17 02:35:51 +04:00
|
|
|
|
* Valid values are ``true``, to enable previews, or
|
2014-10-14 21:00:20 +04:00
|
|
|
|
* ``false``, to disable previews
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2013-08-29 12:08:53 +04:00
|
|
|
|
'enable_previews' => true,
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* The maximum width, in pixels, of a preview. A value of ``null`` means there
|
|
|
|
|
* is no limit.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2018-01-08 13:39:09 +03:00
|
|
|
|
* Defaults to ``4096``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2018-01-08 13:39:09 +03:00
|
|
|
|
'preview_max_x' => 4096,
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* The maximum height, in pixels, of a preview. A value of ``null`` means there
|
|
|
|
|
* is no limit.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2018-01-08 13:39:09 +03:00
|
|
|
|
* Defaults to ``4096``
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2018-01-08 13:39:09 +03:00
|
|
|
|
'preview_max_y' => 4096,
|
2015-01-19 02:22:55 +03:00
|
|
|
|
|
|
|
|
|
/**
|
2017-11-13 09:41:48 +03:00
|
|
|
|
* max file size for generating image previews with imagegd (default behavior)
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* If the image is bigger, it'll try other preview generators, but will most
|
|
|
|
|
* likely show the default mimetype icon. Set to -1 for no limit.
|
2015-01-19 02:22:55 +03:00
|
|
|
|
*
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* Defaults to ``50`` megabytes
|
2015-01-19 02:22:55 +03:00
|
|
|
|
*/
|
|
|
|
|
'preview_max_filesize_image' => 50,
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* custom path for LibreOffice/OpenOffice binary
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
2017-12-08 14:28:41 +03:00
|
|
|
|
*
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2013-06-05 13:18:57 +04:00
|
|
|
|
'preview_libreoffice_path' => '/usr/bin/libreoffice',
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* Use this if LibreOffice/OpenOffice requires additional arguments.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
|
|
|
|
'preview_office_cl_parameters' =>
|
|
|
|
|
' --headless --nologo --nofirststartwizard --invisible --norestore '.
|
2018-07-13 17:22:25 +03:00
|
|
|
|
'--convert-to png --outdir ',
|
2013-09-01 20:17:14 +04:00
|
|
|
|
|
2014-09-19 15:35:21 +04:00
|
|
|
|
/**
|
|
|
|
|
* Only register providers that have been explicitly enabled
|
|
|
|
|
*
|
2014-10-07 11:35:21 +04:00
|
|
|
|
* The following providers are disabled by default due to performance or privacy
|
|
|
|
|
* concerns:
|
2014-10-07 16:14:19 +04:00
|
|
|
|
*
|
2014-10-07 11:35:21 +04:00
|
|
|
|
* - OC\Preview\Illustrator
|
2014-11-21 19:12:11 +03:00
|
|
|
|
* - OC\Preview\Movie
|
2014-09-24 23:16:14 +04:00
|
|
|
|
* - OC\Preview\MSOffice2003
|
|
|
|
|
* - OC\Preview\MSOffice2007
|
2014-10-07 11:35:21 +04:00
|
|
|
|
* - OC\Preview\MSOfficeDoc
|
|
|
|
|
* - OC\Preview\PDF
|
|
|
|
|
* - OC\Preview\Photoshop
|
|
|
|
|
* - OC\Preview\Postscript
|
2014-09-24 23:16:14 +04:00
|
|
|
|
* - OC\Preview\StarOffice
|
2014-09-19 15:35:21 +04:00
|
|
|
|
* - OC\Preview\SVG
|
2014-10-04 19:50:12 +04:00
|
|
|
|
* - OC\Preview\TIFF
|
2015-01-24 18:33:29 +03:00
|
|
|
|
* - OC\Preview\Font
|
2015-02-20 15:10:16 +03:00
|
|
|
|
*
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to the following providers:
|
|
|
|
|
*
|
|
|
|
|
* - OC\Preview\BMP
|
|
|
|
|
* - OC\Preview\GIF
|
2018-08-22 14:44:05 +03:00
|
|
|
|
* - OC\Preview\HEIC
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* - OC\Preview\JPEG
|
|
|
|
|
* - OC\Preview\MarkDown
|
|
|
|
|
* - OC\Preview\MP3
|
|
|
|
|
* - OC\Preview\PNG
|
|
|
|
|
* - OC\Preview\TXT
|
|
|
|
|
* - OC\Preview\XBitmap
|
2020-04-05 12:01:40 +03:00
|
|
|
|
* - OC\Preview\OpenDocument
|
|
|
|
|
* - OC\Preview\Krita
|
2014-09-19 15:35:21 +04:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'enabledPreviewProviders' => [
|
2015-04-02 11:31:24 +03:00
|
|
|
|
'OC\Preview\PNG',
|
|
|
|
|
'OC\Preview\JPEG',
|
|
|
|
|
'OC\Preview\GIF',
|
2018-08-22 14:44:05 +03:00
|
|
|
|
'OC\Preview\HEIC',
|
2015-04-02 11:31:24 +03:00
|
|
|
|
'OC\Preview\BMP',
|
|
|
|
|
'OC\Preview\XBitmap',
|
2014-09-19 15:35:21 +04:00
|
|
|
|
'OC\Preview\MP3',
|
|
|
|
|
'OC\Preview\TXT',
|
2020-04-05 12:01:40 +03:00
|
|
|
|
'OC\Preview\MarkDown',
|
|
|
|
|
'OC\Preview\OpenDocument',
|
|
|
|
|
'OC\Preview\Krita',
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2014-09-19 15:35:21 +04:00
|
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
|
/**
|
|
|
|
|
* LDAP
|
|
|
|
|
*
|
|
|
|
|
* Global settings used by LDAP User and Group Backend
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* defines the interval in minutes for the background job that checks user
|
2015-08-17 20:38:42 +03:00
|
|
|
|
* existence and marks them as ready to be cleaned up. The number is always
|
2014-08-21 19:59:13 +04:00
|
|
|
|
* minutes. Setting it to 0 disables the feature.
|
2016-07-13 15:30:50 +03:00
|
|
|
|
* See command line (occ) methods ``ldap:show-remnants`` and ``user:delete``
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``51`` minutes
|
2014-08-21 19:59:13 +04:00
|
|
|
|
*/
|
|
|
|
|
'ldapUserCleanupInterval' => 51,
|
|
|
|
|
|
2017-08-22 15:36:00 +03:00
|
|
|
|
/**
|
|
|
|
|
* Sort groups in the user settings by name instead of the user count
|
2017-08-30 22:16:27 +03:00
|
|
|
|
*
|
|
|
|
|
* By enabling this the user count beside the group name is disabled as well.
|
2017-08-22 15:36:00 +03:00
|
|
|
|
*/
|
|
|
|
|
'sort_groups_by_name' => false,
|
|
|
|
|
|
2015-11-24 01:53:55 +03:00
|
|
|
|
/**
|
|
|
|
|
* Comments
|
|
|
|
|
*
|
|
|
|
|
* Global settings for the Comments infrastructure
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Replaces the default Comments Manager Factory. This can be utilized if an
|
|
|
|
|
* own or 3rdParty CommentsManager should be used that – for instance – uses the
|
|
|
|
|
* filesystem instead of the database to keep the comments.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``\OC\Comments\ManagerFactory``
|
2015-11-24 01:53:55 +03:00
|
|
|
|
*/
|
|
|
|
|
'comments.managerFactory' => '\OC\Comments\ManagerFactory',
|
|
|
|
|
|
2016-01-19 18:17:49 +03:00
|
|
|
|
/**
|
|
|
|
|
* Replaces the default System Tags Manager Factory. This can be utilized if an
|
|
|
|
|
* own or 3rdParty SystemTagsManager should be used that – for instance – uses the
|
2017-05-11 12:30:51 +03:00
|
|
|
|
* filesystem instead of the database to keep the tags.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``\OC\SystemTag\ManagerFactory``
|
2016-01-19 18:17:49 +03:00
|
|
|
|
*/
|
|
|
|
|
'systemtags.managerFactory' => '\OC\SystemTag\ManagerFactory',
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* Maintenance
|
|
|
|
|
*
|
|
|
|
|
* These options are for halting user activity when you are performing server
|
|
|
|
|
* maintenance.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Enable maintenance mode to disable Nextcloud
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*
|
2016-10-01 13:17:55 +03:00
|
|
|
|
* If you want to prevent users from logging in to Nextcloud before you start
|
|
|
|
|
* doing some maintenance work, you need to set the value of the maintenance
|
|
|
|
|
* parameter to true. Please keep in mind that users who are already logged-in
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* are kicked out of Nextcloud instantly.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
|
|
|
|
'maintenance' => false,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SSL
|
|
|
|
|
*/
|
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Extra SSL options to be used for configuration.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to an empty array.
|
2014-10-07 11:35:21 +04:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'openssl' => [
|
2014-10-07 11:35:21 +04:00
|
|
|
|
'config' => '/absolute/location/of/openssl.cnf',
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2013-11-25 19:01:42 +04:00
|
|
|
|
|
2015-01-14 21:25:00 +03:00
|
|
|
|
/**
|
|
|
|
|
* Memory caching backend configuration
|
|
|
|
|
*
|
|
|
|
|
* Available cache backends:
|
2015-07-07 11:53:06 +03:00
|
|
|
|
*
|
|
|
|
|
* * ``\OC\Memcache\APCu`` APC user backend
|
|
|
|
|
* * ``\OC\Memcache\ArrayCache`` In-memory array-based backend (not recommended)
|
|
|
|
|
* * ``\OC\Memcache\Memcached`` Memcached backend
|
|
|
|
|
* * ``\OC\Memcache\Redis`` Redis backend
|
|
|
|
|
*
|
|
|
|
|
* Advice on choosing between the various backends:
|
|
|
|
|
*
|
|
|
|
|
* * APCu should be easiest to install. Almost all distributions have packages.
|
|
|
|
|
* Use this for single user environment for all caches.
|
|
|
|
|
* * Use Redis or Memcached for distributed environments.
|
|
|
|
|
* For the local cache (you can configure two) take APCu.
|
2015-01-14 21:25:00 +03:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Memory caching backend for locally stored data
|
2015-07-07 11:53:06 +03:00
|
|
|
|
*
|
|
|
|
|
* * Used for host-specific data, e.g. file paths
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``none``
|
2015-01-14 21:25:00 +03:00
|
|
|
|
*/
|
|
|
|
|
'memcache.local' => '\OC\Memcache\APCu',
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Memory caching backend for distributed data
|
2015-07-07 11:53:06 +03:00
|
|
|
|
*
|
|
|
|
|
* * Used for installation-specific data, e.g. database caching
|
|
|
|
|
* * If unset, defaults to the value of memcache.local
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``none``
|
2015-01-14 21:25:00 +03:00
|
|
|
|
*/
|
|
|
|
|
'memcache.distributed' => '\OC\Memcache\Memcached',
|
|
|
|
|
|
2014-12-10 14:24:20 +03:00
|
|
|
|
/**
|
2016-03-14 01:41:04 +03:00
|
|
|
|
* Connection details for redis to use for memory caching in a single server configuration.
|
2015-10-30 22:19:23 +03:00
|
|
|
|
*
|
|
|
|
|
* For enhanced security it is recommended to configure Redis
|
|
|
|
|
* to require a password. See http://redis.io/topics/security
|
|
|
|
|
* for more information.
|
2014-12-10 14:24:20 +03:00
|
|
|
|
*/
|
2016-03-14 01:41:04 +03:00
|
|
|
|
'redis' => [
|
2014-12-10 14:24:20 +03:00
|
|
|
|
'host' => 'localhost', // can also be a unix domain socket: '/tmp/redis.sock'
|
|
|
|
|
'port' => 6379,
|
2015-04-14 22:40:31 +03:00
|
|
|
|
'timeout' => 0.0,
|
2015-10-30 22:19:23 +03:00
|
|
|
|
'password' => '', // Optional, if not defined no password will be used.
|
2015-04-14 22:40:31 +03:00
|
|
|
|
'dbindex' => 0, // Optional, if undefined SELECT will not run and will use Redis Server's default DB Index.
|
2016-03-14 01:41:04 +03:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Connection details for a Redis Cluster
|
|
|
|
|
*
|
|
|
|
|
* Only for use with Redis Clustering, for Sentinel-based setups use the single
|
|
|
|
|
* server configuration above, and perform HA on the hostname.
|
|
|
|
|
*
|
2017-05-02 18:42:06 +03:00
|
|
|
|
* Redis Cluster support requires the php module phpredis in version 3.0.0 or
|
2017-12-01 18:14:02 +03:00
|
|
|
|
* higher.
|
2016-03-14 01:41:04 +03:00
|
|
|
|
*
|
|
|
|
|
* Available failover modes:
|
|
|
|
|
* - \RedisCluster::FAILOVER_NONE - only send commands to master nodes (default)
|
2017-05-12 01:02:49 +03:00
|
|
|
|
* - \RedisCluster::FAILOVER_ERROR - failover to slaves for read commands if master is unavailable (recommended)
|
2016-03-14 01:41:04 +03:00
|
|
|
|
* - \RedisCluster::FAILOVER_DISTRIBUTE - randomly distribute read commands across master and slaves
|
2017-05-12 01:02:49 +03:00
|
|
|
|
*
|
|
|
|
|
* WARNING: FAILOVER_DISTRIBUTE is a not recommended setting and we strongly
|
|
|
|
|
* suggest to not use it if you use Redis for file locking. Due to the way Redis
|
2017-12-05 01:13:23 +03:00
|
|
|
|
* is synchronized it could happen, that the read for an existing lock is
|
|
|
|
|
* scheduled to a slave that is not fully synchronized with the connected master
|
2017-05-12 01:02:49 +03:00
|
|
|
|
* which then causes a FileLocked exception.
|
|
|
|
|
*
|
|
|
|
|
* See https://redis.io/topics/cluster-spec for details about the Redis cluster
|
2019-05-22 13:19:07 +03:00
|
|
|
|
*
|
|
|
|
|
* Authentication works with phpredis version 4.2.1+. See
|
|
|
|
|
* https://github.com/phpredis/phpredis/commit/c5994f2a42b8a348af92d3acb4edff1328ad8ce1
|
2016-03-14 01:41:04 +03:00
|
|
|
|
*/
|
|
|
|
|
'redis.cluster' => [
|
|
|
|
|
'seeds' => [ // provide some/all of the cluster servers to bootstrap discovery, port required
|
|
|
|
|
'localhost:7000',
|
2019-05-22 13:19:07 +03:00
|
|
|
|
'localhost:7001',
|
2016-03-14 01:41:04 +03:00
|
|
|
|
],
|
|
|
|
|
'timeout' => 0.0,
|
|
|
|
|
'read_timeout' => 0.0,
|
2019-05-22 13:19:07 +03:00
|
|
|
|
'failover_mode' => \RedisCluster::FAILOVER_ERROR,
|
|
|
|
|
'password' => '', // Optional, if not defined no password will be used.
|
2016-03-14 01:41:04 +03:00
|
|
|
|
],
|
|
|
|
|
|
2014-12-10 14:24:20 +03:00
|
|
|
|
|
2014-10-07 12:04:54 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Server details for one or more memcached servers to use for memory caching.
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'memcached_servers' => [
|
2014-10-07 12:04:54 +04:00
|
|
|
|
// hostname, port and optional weight. Also see:
|
2020-09-17 18:23:07 +03:00
|
|
|
|
// https://www.php.net/manual/en/memcached.addservers.php
|
|
|
|
|
// https://www.php.net/manual/en/memcached.addserver.php
|
2020-03-26 11:30:18 +03:00
|
|
|
|
['localhost', 11211],
|
2014-10-07 12:04:54 +04:00
|
|
|
|
//array('other.host.local', 11211),
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2014-03-20 19:15:18 +04:00
|
|
|
|
|
2016-05-11 20:38:00 +03:00
|
|
|
|
/**
|
2020-01-09 19:43:35 +03:00
|
|
|
|
* Connection options for memcached
|
2016-05-11 20:38:00 +03:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'memcached_options' => [
|
2016-05-11 20:38:00 +03:00
|
|
|
|
// Set timeouts to 50ms
|
|
|
|
|
\Memcached::OPT_CONNECT_TIMEOUT => 50,
|
|
|
|
|
\Memcached::OPT_RETRY_TIMEOUT => 50,
|
|
|
|
|
\Memcached::OPT_SEND_TIMEOUT => 50,
|
|
|
|
|
\Memcached::OPT_RECV_TIMEOUT => 50,
|
|
|
|
|
\Memcached::OPT_POLL_TIMEOUT => 50,
|
|
|
|
|
|
|
|
|
|
// Enable compression
|
|
|
|
|
\Memcached::OPT_COMPRESSION => true,
|
|
|
|
|
|
|
|
|
|
// Turn on consistent hashing
|
|
|
|
|
\Memcached::OPT_LIBKETAMA_COMPATIBLE => true,
|
|
|
|
|
|
|
|
|
|
// Enable Binary Protocol
|
|
|
|
|
\Memcached::OPT_BINARY_PROTOCOL => true,
|
|
|
|
|
|
|
|
|
|
// Binary serializer vill be enabled if the igbinary PECL module is available
|
|
|
|
|
//\Memcached::OPT_SERIALIZER => \Memcached::SERIALIZER_IGBINARY,
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2016-05-11 20:38:00 +03:00
|
|
|
|
|
2015-01-14 21:25:00 +03:00
|
|
|
|
|
2014-10-07 16:14:19 +04:00
|
|
|
|
/**
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* Location of the cache folder, defaults to ``data/$user/cache`` where
|
|
|
|
|
* ``$user`` is the current user. When specified, the format will change to
|
|
|
|
|
* ``$cache_path/$user`` where ``$cache_path`` is the configured cache directory
|
|
|
|
|
* and ``$user`` is the user.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2014-03-20 19:15:18 +04:00
|
|
|
|
*/
|
2014-05-22 15:45:55 +04:00
|
|
|
|
'cache_path' => '',
|
|
|
|
|
|
2016-03-22 18:49:14 +03:00
|
|
|
|
/**
|
2016-05-24 16:18:56 +03:00
|
|
|
|
* TTL of chunks located in the cache folder before they're removed by
|
2016-03-22 18:49:14 +03:00
|
|
|
|
* garbage collection (in seconds). Increase this value if users have
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* issues uploading very large files via the Nextcloud Client as upload isn't
|
2016-03-22 18:49:14 +03:00
|
|
|
|
* completed within one day.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``60*60*24`` (1 day)
|
2016-03-22 18:49:14 +03:00
|
|
|
|
*/
|
2017-01-16 17:25:02 +03:00
|
|
|
|
'cache_chunk_gc_ttl' => 60*60*24,
|
2016-03-22 18:49:14 +03:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Using Object Store with Nextcloud
|
2014-10-09 01:01:46 +04:00
|
|
|
|
*/
|
2014-06-13 17:50:14 +04:00
|
|
|
|
|
2014-10-07 11:35:21 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* This example shows how to configure Nextcloud to store all files in a
|
2014-10-09 01:01:46 +04:00
|
|
|
|
* swift object storage.
|
2014-06-13 17:50:14 +04:00
|
|
|
|
*
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* It is important to note that Nextcloud in object store mode will expect
|
2014-10-07 11:35:21 +04:00
|
|
|
|
* exclusive access to the object store container because it only stores the
|
|
|
|
|
* binary data for each file. The metadata is currently kept in the local
|
|
|
|
|
* database for performance reasons.
|
2014-06-13 17:50:14 +04:00
|
|
|
|
*
|
2014-10-07 11:35:21 +04:00
|
|
|
|
* WARNING: The current implementation is incompatible with any app that uses
|
|
|
|
|
* direct file IO and circumvents our virtual filesystem. That includes
|
|
|
|
|
* Encryption and Gallery. Gallery will store thumbnails directly in the
|
|
|
|
|
* filesystem and encryption will cause severe overhead because key files need
|
|
|
|
|
* to be fetched in addition to any requested file.
|
2014-06-23 18:42:05 +04:00
|
|
|
|
*
|
|
|
|
|
* One way to test is applying for a trystack account at http://trystack.org/
|
2014-06-13 17:50:14 +04:00
|
|
|
|
*/
|
2016-10-27 15:15:59 +03:00
|
|
|
|
'objectstore' => [
|
2014-06-13 17:50:14 +04:00
|
|
|
|
'class' => 'OC\\Files\\ObjectStore\\Swift',
|
2016-10-27 15:15:59 +03:00
|
|
|
|
'arguments' => [
|
2017-05-11 11:15:49 +03:00
|
|
|
|
// trystack will use your facebook id as the user name
|
2014-10-07 11:35:21 +04:00
|
|
|
|
'username' => 'facebook100000123456789',
|
|
|
|
|
// in the trystack dashboard go to user -> settings -> API Password to
|
|
|
|
|
// generate a password
|
|
|
|
|
'password' => 'Secr3tPaSSWoRdt7',
|
|
|
|
|
// must already exist in the objectstore, name can be different
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'container' => 'nextcloud',
|
2016-10-27 15:15:59 +03:00
|
|
|
|
// prefix to prepend to the fileid, default is 'oid:urn:'
|
|
|
|
|
'objectPrefix' => 'oid:urn:',
|
2014-10-07 11:35:21 +04:00
|
|
|
|
// create the container if it does not exist. default is false
|
|
|
|
|
'autocreate' => true,
|
|
|
|
|
// required, dev-/trystack defaults to 'RegionOne'
|
|
|
|
|
'region' => 'RegionOne',
|
|
|
|
|
// The Identity / Keystone endpoint
|
|
|
|
|
'url' => 'http://8.21.28.222:5000/v2.0',
|
|
|
|
|
// required on dev-/trystack
|
|
|
|
|
'tenantName' => 'facebook100000123456789',
|
|
|
|
|
// dev-/trystack uses swift by default, the lib defaults to 'cloudFiles'
|
|
|
|
|
// if omitted
|
|
|
|
|
'serviceName' => 'swift',
|
2015-12-10 16:37:53 +03:00
|
|
|
|
// The Interface / url Type, optional
|
|
|
|
|
'urlType' => 'internal'
|
2016-10-27 15:15:59 +03:00
|
|
|
|
],
|
|
|
|
|
],
|
2014-06-13 17:50:14 +04:00
|
|
|
|
|
2018-02-22 18:00:40 +03:00
|
|
|
|
/**
|
|
|
|
|
* To use swift V3
|
|
|
|
|
*/
|
|
|
|
|
'objectstore' => [
|
|
|
|
|
'class' => 'OC\\Files\\ObjectStore\\Swift',
|
|
|
|
|
'arguments' => [
|
|
|
|
|
'autocreate' => true,
|
|
|
|
|
'user' => [
|
|
|
|
|
'name' => 'swift',
|
|
|
|
|
'password' => 'swift',
|
|
|
|
|
'domain' => [
|
|
|
|
|
'name' => 'default',
|
2018-03-12 21:59:33 +03:00
|
|
|
|
],
|
2018-02-22 18:00:40 +03:00
|
|
|
|
],
|
2018-04-23 20:32:41 +03:00
|
|
|
|
'scope' => [
|
|
|
|
|
'project' => [
|
|
|
|
|
'name' => 'service',
|
|
|
|
|
'domain' => [
|
|
|
|
|
'name' => 'default',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
2018-02-22 18:00:40 +03:00
|
|
|
|
'tenantName' => 'service',
|
|
|
|
|
'serviceName' => 'swift',
|
|
|
|
|
'region' => 'regionOne',
|
2018-04-23 20:32:41 +03:00
|
|
|
|
'url' => 'http://yourswifthost:5000/v3',
|
2018-03-12 21:59:33 +03:00
|
|
|
|
'bucket' => 'nextcloud',
|
2018-02-22 18:00:40 +03:00
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
|
2020-08-06 21:10:25 +03:00
|
|
|
|
/**
|
|
|
|
|
* If this is set to true and a multibucket object store is configured then
|
|
|
|
|
* newly created previews are put into 256 dedicated buckets.
|
|
|
|
|
*
|
|
|
|
|
* Those buckets are named like the mulibucket version but with the postfix
|
|
|
|
|
* ``-preview-NUMBER`` where NUMBER is between 0 and 255.
|
|
|
|
|
*
|
|
|
|
|
* Keep in mind that only previews of files are put in there that don't have
|
|
|
|
|
* some already. Otherwise the old bucket will be used.
|
|
|
|
|
*
|
|
|
|
|
* To migrate existing previews to this new multibucket distribution of previews
|
|
|
|
|
* use the occ command ``preview:repair``. For now this will only migrate
|
|
|
|
|
* previews that were generated before Nextcloud 19 in the flat
|
|
|
|
|
* ``appdata_INSTANCEID/previews/FILEID`` folder structure.
|
|
|
|
|
*/
|
|
|
|
|
'objectstore.multibucket.preview-distribution' => false,
|
|
|
|
|
|
2016-01-11 12:30:03 +03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sharing
|
|
|
|
|
*
|
|
|
|
|
* Global settings for Sharing
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Replaces the default Share Provider Factory. This can be utilized if
|
2017-05-11 11:15:49 +03:00
|
|
|
|
* own or 3rdParty Share Providers are used that – for instance – use the
|
2016-01-11 12:30:03 +03:00
|
|
|
|
* filesystem instead of the database to keep the share information.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``\OC\Share20\ProviderFactory``
|
2016-01-11 12:30:03 +03:00
|
|
|
|
*/
|
|
|
|
|
'sharing.managerFactory' => '\OC\Share20\ProviderFactory',
|
|
|
|
|
|
2017-02-21 20:10:38 +03:00
|
|
|
|
/**
|
2020-12-12 02:25:10 +03:00
|
|
|
|
* Define max number of results returned by the search for auto-completion of
|
|
|
|
|
* users, groups, etc. The value must not be lower than 0 (for unlimited).
|
|
|
|
|
*
|
|
|
|
|
* If more, different sources are requested (e.g. different user backends; or
|
|
|
|
|
* both users and groups), the value is applied per source and might not be
|
|
|
|
|
* truncated after collecting the results. I.e. more results can appear than
|
|
|
|
|
* configured here.
|
|
|
|
|
*
|
|
|
|
|
* Default is 25.
|
2017-02-21 20:10:38 +03:00
|
|
|
|
*/
|
2020-12-12 02:25:10 +03:00
|
|
|
|
'sharing.maxAutocompleteResults' => 25,
|
2017-02-21 20:10:38 +03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Define the minimum length of the search string before we start auto-completion
|
|
|
|
|
* Default is no limit (value set to 0)
|
|
|
|
|
*/
|
|
|
|
|
'sharing.minSearchStringLength' => 0,
|
2016-01-11 12:30:03 +03:00
|
|
|
|
|
2019-12-12 23:38:52 +03:00
|
|
|
|
/**
|
2020-01-16 20:42:58 +03:00
|
|
|
|
* Set to true to enable that internal shares need to be accepted by the users by default.
|
|
|
|
|
* Users can change this for their account in their personal sharing settings
|
2019-12-12 23:38:52 +03:00
|
|
|
|
*/
|
2020-01-16 20:42:58 +03:00
|
|
|
|
'sharing.enable_share_accept' => false,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set to true to enforce that internal shares need to be accepted
|
|
|
|
|
*/
|
|
|
|
|
'sharing.force_share_accept' => false,
|
|
|
|
|
|
2020-08-19 10:03:58 +03:00
|
|
|
|
/**
|
|
|
|
|
* Set to false to stop sending a mail when users receive a share
|
|
|
|
|
*/
|
|
|
|
|
'sharing.enable_share_mail' => true,
|
|
|
|
|
|
2019-12-12 23:38:52 +03:00
|
|
|
|
|
2015-09-23 11:04:41 +03:00
|
|
|
|
/**
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* All other configuration options
|
2015-09-23 11:04:41 +03:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Additional driver options for the database connection, eg. to enable SSL
|
2016-04-12 16:10:39 +03:00
|
|
|
|
* encryption in MySQL or specify a custom wait timeout on a cheap hoster.
|
2015-09-23 11:04:41 +03:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'dbdriveroptions' => [
|
2015-09-23 11:04:41 +03:00
|
|
|
|
PDO::MYSQL_ATTR_SSL_CA => '/file/path/to/ca_cert.pem',
|
2016-04-12 16:10:39 +03:00
|
|
|
|
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET wait_timeout = 28800'
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2015-09-23 11:04:41 +03:00
|
|
|
|
|
|
|
|
|
/**
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* sqlite3 journal mode can be specified using this configuration parameter -
|
|
|
|
|
* can be 'WAL' or 'DELETE' see for more details https://www.sqlite.org/wal.html
|
2015-09-23 11:04:41 +03:00
|
|
|
|
*/
|
|
|
|
|
'sqlite.journal_mode' => 'DELETE',
|
|
|
|
|
|
2015-07-30 14:57:04 +03:00
|
|
|
|
/**
|
2017-03-23 13:12:58 +03:00
|
|
|
|
* During setup, if requirements are met (see below), this setting is set to true
|
2017-03-21 15:08:14 +03:00
|
|
|
|
* and MySQL can handle 4 byte characters instead of 3 byte characters.
|
|
|
|
|
*
|
2017-05-24 10:07:58 +03:00
|
|
|
|
* If you want to convert an existing 3-byte setup into a 4-byte setup please
|
2017-05-08 12:34:47 +03:00
|
|
|
|
* set the parameters in MySQL as mentioned below and run the migration command:
|
2017-07-19 17:44:57 +03:00
|
|
|
|
* ./occ db:convert-mysql-charset
|
2017-03-23 13:12:58 +03:00
|
|
|
|
* The config setting will be set automatically after a successful run.
|
2017-05-24 10:07:58 +03:00
|
|
|
|
*
|
2017-03-23 13:12:58 +03:00
|
|
|
|
* Consult the documentation for more details.
|
2017-05-24 10:07:58 +03:00
|
|
|
|
*
|
2015-07-30 14:57:04 +03:00
|
|
|
|
* MySQL requires a special setup for longer indexes (> 767 bytes) which are
|
|
|
|
|
* needed:
|
|
|
|
|
*
|
|
|
|
|
* [mysqld]
|
2017-02-03 18:24:22 +03:00
|
|
|
|
* innodb_large_prefix=ON
|
|
|
|
|
* innodb_file_format=Barracuda
|
|
|
|
|
* innodb_file_per_table=ON
|
2015-07-30 14:57:04 +03:00
|
|
|
|
*
|
|
|
|
|
* Tables will be created with
|
|
|
|
|
* * character set: utf8mb4
|
|
|
|
|
* * collation: utf8mb4_bin
|
|
|
|
|
* * row_format: compressed
|
|
|
|
|
*
|
|
|
|
|
* See:
|
|
|
|
|
* https://dev.mysql.com/doc/refman/5.7/en/charset-unicode-utf8mb4.html
|
|
|
|
|
* https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_large_prefix
|
|
|
|
|
* https://mariadb.com/kb/en/mariadb/xtradbinnodb-server-system-variables/#innodb_large_prefix
|
|
|
|
|
* http://www.tocker.ca/2013/10/31/benchmarking-innodb-page-compression-performance.html
|
|
|
|
|
* http://mechanics.flite.com/blog/2014/07/29/using-innodb-large-prefix-to-avoid-error-1071/
|
|
|
|
|
*/
|
|
|
|
|
'mysql.utf8mb4' => false,
|
|
|
|
|
|
2014-10-27 14:51:26 +03:00
|
|
|
|
/**
|
2014-12-03 10:52:59 +03:00
|
|
|
|
* Database types that are supported for installation.
|
2014-10-29 22:38:46 +03:00
|
|
|
|
*
|
2014-10-27 14:51:26 +03:00
|
|
|
|
* Available:
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* - sqlite (SQLite3)
|
2014-10-27 14:51:26 +03:00
|
|
|
|
* - mysql (MySQL)
|
|
|
|
|
* - pgsql (PostgreSQL)
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* - oci (Oracle)
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to the following databases:
|
|
|
|
|
* - sqlite (SQLite3)
|
|
|
|
|
* - mysql (MySQL)
|
|
|
|
|
* - pgsql (PostgreSQL)
|
2014-10-27 14:51:26 +03:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'supportedDatabases' => [
|
2014-10-27 14:51:26 +03:00
|
|
|
|
'sqlite',
|
|
|
|
|
'mysql',
|
|
|
|
|
'pgsql',
|
|
|
|
|
'oci',
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2014-10-27 14:51:26 +03:00
|
|
|
|
|
2014-10-07 12:04:54 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Override where Nextcloud stores temporary files. Useful in situations where
|
2015-09-23 11:04:41 +03:00
|
|
|
|
* the system temporary directory is on a limited space ramdisk or is otherwise
|
|
|
|
|
* restricted, or if external storages which do not support streaming are in
|
|
|
|
|
* use.
|
|
|
|
|
*
|
2016-02-03 02:30:07 +03:00
|
|
|
|
* The Web server user must have write access to this directory.
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'tempdirectory' => '/tmp/nextcloudtemp',
|
2015-09-23 11:04:41 +03:00
|
|
|
|
|
2020-01-20 20:11:00 +03:00
|
|
|
|
/**
|
|
|
|
|
* Hashing
|
2020-01-29 23:39:58 +03:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* By default Nextcloud will use the Argon2 password hashing if available.
|
|
|
|
|
* However if for whatever reason you want to stick with the PASSWORD_DEFAULT
|
|
|
|
|
* of your php version. Then set the setting to true.
|
|
|
|
|
*/
|
|
|
|
|
'hashing_default_password' => false,
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-20 20:11:00 +03:00
|
|
|
|
*
|
|
|
|
|
* Nextcloud uses the Argon2 algorithm (with PHP >= 7.2) to create hashes by its
|
|
|
|
|
* own and exposes its configuration options as following. More information can
|
|
|
|
|
* be found at: https://www.php.net/manual/en/function.password-hash.php
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2020-10-09 21:18:32 +03:00
|
|
|
|
* The number of CPU threads to be used by the algorithm for computing a hash.
|
|
|
|
|
* The value must be an integer, and the minimum value is 1. Rationally it does
|
|
|
|
|
* not help to provide a number higher than the available threads on the machine.
|
|
|
|
|
* Values that undershoot the minimum will be ignored in favor of the minimum.
|
2020-01-20 20:11:00 +03:00
|
|
|
|
*/
|
2020-10-09 21:18:32 +03:00
|
|
|
|
'hashingThreads' => PASSWORD_ARGON2_DEFAULT_THREADS,
|
2020-01-20 20:11:00 +03:00
|
|
|
|
|
|
|
|
|
/**
|
2020-10-09 21:18:32 +03:00
|
|
|
|
* The memory in KiB to be used by the algorithm for computing a hash. The value
|
|
|
|
|
* must be an integer, and the minimum value is 8 times the number of CPU threads.
|
|
|
|
|
* Values that undershoot the minimum will be ignored in favor of the minimum.
|
2020-01-20 20:11:00 +03:00
|
|
|
|
*/
|
2020-10-09 21:18:32 +03:00
|
|
|
|
'hashingMemoryCost' => PASSWORD_ARGON2_DEFAULT_MEMORY_COST,
|
2020-01-20 20:11:00 +03:00
|
|
|
|
|
|
|
|
|
/**
|
2020-10-09 21:18:32 +03:00
|
|
|
|
* The number of iterations that are used by the algorithm for computing a hash.
|
|
|
|
|
* The value must be an integer, and the minimum value is 1. Values that
|
|
|
|
|
* undershoot the minimum will be ignored in favor of the minimum.
|
2020-01-20 20:11:00 +03:00
|
|
|
|
*/
|
2020-10-09 21:18:32 +03:00
|
|
|
|
'hashingTimeCost' => PASSWORD_ARGON2_DEFAULT_TIME_COST,
|
2020-01-20 20:11:00 +03:00
|
|
|
|
|
2015-09-23 11:04:41 +03:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* The hashing cost used by hashes generated by Nextcloud
|
2015-09-23 11:04:41 +03:00
|
|
|
|
* Using a higher value requires more time and CPU power to calculate the hashes
|
|
|
|
|
*/
|
|
|
|
|
'hashingCost' => 10,
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
2015-07-06 10:07:35 +03:00
|
|
|
|
/**
|
|
|
|
|
* Blacklist a specific file or files and disallow the upload of files
|
|
|
|
|
* with this name. ``.htaccess`` is blocked by default.
|
|
|
|
|
* WARNING: USE THIS ONLY IF YOU KNOW WHAT YOU ARE DOING.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``array('.htaccess')``
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'blacklisted_files' => ['.htaccess'],
|
2015-07-06 10:07:35 +03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Define a default folder for shared files and folders other than root.
|
2019-06-12 11:15:48 +03:00
|
|
|
|
* Changes to this value will only have effect on new shares.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``/``
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
|
|
|
|
'share_folder' => '/',
|
|
|
|
|
|
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* If you are applying a theme to Nextcloud, enter the name of the theme here.
|
|
|
|
|
* The default location for themes is ``nextcloud/themes/``.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to the theming app which is shipped since Nextcloud 9
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
|
|
|
|
'theme' => '',
|
|
|
|
|
|
|
|
|
|
/**
|
2021-03-26 21:38:38 +03:00
|
|
|
|
* The default cipher for encrypting files. Currently supported are:
|
|
|
|
|
* - AES-256-CTR
|
|
|
|
|
* - AES-128-CTR
|
|
|
|
|
* - AES-256-CFB
|
|
|
|
|
* - AES-128-CFB
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``AES-256-CTR``
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
2021-03-26 21:38:38 +03:00
|
|
|
|
'cipher' => 'AES-256-CTR',
|
2015-07-06 10:07:35 +03:00
|
|
|
|
|
|
|
|
|
/**
|
2016-07-21 13:26:48 +03:00
|
|
|
|
* The minimum Nextcloud desktop client version that will be allowed to sync with
|
2015-07-06 10:07:35 +03:00
|
|
|
|
* this server instance. All connections made from earlier clients will be denied
|
2016-07-21 13:26:48 +03:00
|
|
|
|
* by the server. Defaults to the minimum officially supported Nextcloud desktop
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* clientversion at the time of release of this server version.
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*
|
2016-07-21 13:26:48 +03:00
|
|
|
|
* When changing this, note that older unsupported versions of the Nextcloud desktop
|
2015-07-06 10:07:35 +03:00
|
|
|
|
* client may not function as expected, and could lead to permanent data loss for
|
|
|
|
|
* clients or other unexpected results.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``2.0.0``
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
2016-10-24 23:42:29 +03:00
|
|
|
|
'minimum.supported.desktop.version' => '2.0.0',
|
2015-07-06 10:07:35 +03:00
|
|
|
|
|
2020-12-08 17:12:04 +03:00
|
|
|
|
/**
|
|
|
|
|
* Option to allow local storage to contain symlinks.
|
|
|
|
|
* WARNING: Not recommended. This would make it possible for Nextcloud to access
|
|
|
|
|
* files outside the data directory and could be considered a security risk.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
|
|
|
|
*/
|
|
|
|
|
'localstorage.allowsymlinks' => false,
|
|
|
|
|
|
2015-07-06 10:07:35 +03:00
|
|
|
|
/**
|
|
|
|
|
* EXPERIMENTAL: option whether to include external storage in quota
|
|
|
|
|
* calculation, defaults to false.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
|
|
|
|
'quota_include_external_storage' => false,
|
|
|
|
|
|
2019-08-22 13:19:51 +03:00
|
|
|
|
/**
|
|
|
|
|
* When an external storage is unavailable for some reasons, it will be flagged
|
|
|
|
|
* as such for 10 minutes. When the trigger is a failed authentication attempt
|
|
|
|
|
* the delay is higher and can be controlled with this option. The motivation
|
|
|
|
|
* is to make account lock outs at Active Directories (and compatible) more
|
|
|
|
|
* unlikely.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``1800`` (seconds)
|
|
|
|
|
*/
|
|
|
|
|
'external_storage.auth_availability_delay' => 1800,
|
|
|
|
|
|
2015-07-06 10:07:35 +03:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Specifies how often the local filesystem (the Nextcloud data/ directory, and
|
2016-10-01 13:17:55 +03:00
|
|
|
|
* NFS mounts in data/) is checked for changes made outside Nextcloud. This
|
2016-05-23 19:25:51 +03:00
|
|
|
|
* does not apply to external storages.
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*
|
|
|
|
|
* 0 -> Never check the filesystem for outside changes, provides a performance
|
|
|
|
|
* increase when it's certain that no changes are made directly to the
|
|
|
|
|
* filesystem
|
|
|
|
|
*
|
|
|
|
|
* 1 -> Check each file or folder at most once per request, recommended for
|
|
|
|
|
* general use if outside changes might happen.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``0``
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
2015-07-29 13:01:12 +03:00
|
|
|
|
'filesystem_check_changes' => 0,
|
2015-07-06 10:07:35 +03:00
|
|
|
|
|
2016-02-29 15:39:27 +03:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* By default Nextcloud will store the part files created during upload in the
|
2016-02-29 15:39:27 +03:00
|
|
|
|
* same storage as the upload target. Setting this to false will store the part
|
|
|
|
|
* files in the root of the users folder which might be required to work with certain
|
|
|
|
|
* external storage setups that have limited rename capabilities.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2016-02-29 15:39:27 +03:00
|
|
|
|
*/
|
|
|
|
|
'part_file_in_storage' => true,
|
|
|
|
|
|
2015-07-06 10:07:35 +03:00
|
|
|
|
/**
|
|
|
|
|
* Where ``mount.json`` file should be stored, defaults to ``data/mount.json``
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* in the Nextcloud directory.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``data/mount.json`` in the Nextcloud directory.
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
2016-06-20 21:00:18 +03:00
|
|
|
|
'mount_file' => '/var/www/nextcloud/data/mount.json',
|
2015-07-06 10:07:35 +03:00
|
|
|
|
|
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* When ``true``, prevent Nextcloud from changing the cache due to changes in
|
|
|
|
|
* the filesystem for all storage.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2015-07-06 10:07:35 +03:00
|
|
|
|
*/
|
|
|
|
|
'filesystem_cache_readonly' => false,
|
|
|
|
|
|
2014-10-07 12:04:54 +04:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Secret used by Nextcloud for various purposes, e.g. to encrypt data. If you
|
2014-10-07 12:04:54 +04:00
|
|
|
|
* lose this string there will be data corruption.
|
|
|
|
|
*/
|
|
|
|
|
'secret' => '',
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* List of trusted proxy servers
|
2016-10-01 13:17:55 +03:00
|
|
|
|
*
|
2018-10-30 19:36:41 +03:00
|
|
|
|
* You may set this to an array containing a combination of
|
|
|
|
|
* - IPv4 addresses, e.g. `192.168.2.123`
|
|
|
|
|
* - IPv4 ranges in CIDR notation, e.g. `192.168.2.0/24`
|
|
|
|
|
* - IPv6 addresses, e.g. `fd9e:21a7:a92c:2323::1`
|
|
|
|
|
*
|
|
|
|
|
* _(CIDR notation for IPv6 is currently work in progress and thus not
|
|
|
|
|
* available as of yet)_
|
|
|
|
|
*
|
|
|
|
|
* When an incoming request's `REMOTE_ADDR` matches any of the IP addresses
|
|
|
|
|
* specified here, it is assumed to be a proxy instead of a client. Thus, the
|
|
|
|
|
* client IP will be read from the HTTP header specified in
|
|
|
|
|
* `forwarded_for_headers` instead of from `REMOTE_ADDR`.
|
|
|
|
|
*
|
|
|
|
|
* So if you configure `trusted_proxies`, also consider setting
|
|
|
|
|
* `forwarded_for_headers` which otherwise defaults to `HTTP_X_FORWARDED_FOR`
|
|
|
|
|
* (the `X-Forwarded-For` header).
|
|
|
|
|
*
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* Defaults to an empty array.
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'trusted_proxies' => ['203.0.113.45', '198.51.100.128', '192.168.2.0/24'],
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Headers that should be trusted as client IP address in combination with
|
2015-07-25 20:10:21 +03:00
|
|
|
|
* `trusted_proxies`. If the HTTP header looks like 'X-Forwarded-For', then use
|
|
|
|
|
* 'HTTP_X_FORWARDED_FOR' here.
|
|
|
|
|
*
|
|
|
|
|
* If set incorrectly, a client can spoof their IP address as visible to
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Nextcloud, bypassing access controls and making logs useless!
|
2015-07-25 20:10:21 +03:00
|
|
|
|
*
|
2018-09-04 12:18:10 +03:00
|
|
|
|
* Defaults to ``'HTTP_X_FORWARDED_FOR'``
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'forwarded_for_headers' => ['HTTP_X_FORWARDED', 'HTTP_FORWARDED_FOR'],
|
2014-10-07 12:04:54 +04:00
|
|
|
|
|
2015-01-17 14:11:52 +03:00
|
|
|
|
/**
|
|
|
|
|
* max file size for animating gifs on public-sharing-site.
|
|
|
|
|
* If the gif is bigger, it'll show a static preview
|
|
|
|
|
*
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* Value represents the maximum filesize in megabytes. Set to ``-1`` for
|
|
|
|
|
* no limit.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``10`` megabytes
|
2015-01-17 14:11:52 +03:00
|
|
|
|
*/
|
|
|
|
|
'max_filesize_animated_gifs_public_sharing' => 10,
|
|
|
|
|
|
2015-05-21 17:11:10 +03:00
|
|
|
|
|
|
|
|
|
/**
|
2015-06-26 12:10:10 +03:00
|
|
|
|
* Enables transactional file locking.
|
2015-09-02 18:31:02 +03:00
|
|
|
|
* This is enabled by default.
|
2015-05-21 17:11:10 +03:00
|
|
|
|
*
|
2015-08-17 20:38:42 +03:00
|
|
|
|
* Prevents concurrent processes from accessing the same files
|
2015-05-21 17:11:10 +03:00
|
|
|
|
* at the same time. Can help prevent side effects that would
|
2015-07-06 10:11:05 +03:00
|
|
|
|
* be caused by concurrent operations. Mainly relevant for
|
|
|
|
|
* very large installations with many users working with
|
|
|
|
|
* shared files.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``true``
|
2015-05-21 17:11:10 +03:00
|
|
|
|
*/
|
2015-09-02 18:31:02 +03:00
|
|
|
|
'filelocking.enabled' => true,
|
2015-05-21 17:11:10 +03:00
|
|
|
|
|
2016-03-24 16:07:43 +03:00
|
|
|
|
/**
|
2017-05-11 11:15:49 +03:00
|
|
|
|
* Set the lock's time-to-live in seconds.
|
2016-03-24 16:07:43 +03:00
|
|
|
|
*
|
|
|
|
|
* Any lock older than this will be automatically cleaned up.
|
|
|
|
|
*
|
2017-01-16 17:25:02 +03:00
|
|
|
|
* Defaults to ``60*60`` seconds (1 hour) or the php
|
|
|
|
|
* max_execution_time, whichever is higher.
|
2016-03-24 16:07:43 +03:00
|
|
|
|
*/
|
2017-01-16 17:25:02 +03:00
|
|
|
|
'filelocking.ttl' => 60*60,
|
2016-03-24 16:07:43 +03:00
|
|
|
|
|
2015-05-26 15:41:37 +03:00
|
|
|
|
/**
|
|
|
|
|
* Memory caching backend for file locking
|
2015-07-07 11:53:06 +03:00
|
|
|
|
*
|
2015-07-06 10:11:05 +03:00
|
|
|
|
* Because most memcache backends can clean values without warning using redis
|
|
|
|
|
* is highly recommended to *avoid data loss*.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``none``
|
2015-05-26 15:41:37 +03:00
|
|
|
|
*/
|
2015-06-02 22:46:57 +03:00
|
|
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
2015-05-26 15:41:37 +03:00
|
|
|
|
|
2017-02-13 17:03:46 +03:00
|
|
|
|
/**
|
|
|
|
|
* Enable locking debug logging
|
|
|
|
|
*
|
|
|
|
|
* Note that this can lead to a very large volume of log items being written which can lead
|
|
|
|
|
* to performance degradation and large log files on busy instance.
|
|
|
|
|
*
|
|
|
|
|
* Thus enabling this in production for longer periods of time is not recommended
|
2017-02-14 00:32:57 +03:00
|
|
|
|
* or should be used together with the ``log.condition`` setting.
|
2017-02-13 17:03:46 +03:00
|
|
|
|
*/
|
|
|
|
|
'filelocking.debug' => false,
|
|
|
|
|
|
2016-04-11 17:58:08 +03:00
|
|
|
|
/**
|
|
|
|
|
* Disable the web based updater
|
|
|
|
|
*/
|
|
|
|
|
'upgrade.disable-web' => false,
|
|
|
|
|
|
2015-08-24 13:00:37 +03:00
|
|
|
|
/**
|
2016-06-20 21:00:18 +03:00
|
|
|
|
* Set this Nextcloud instance to debugging mode
|
2015-08-24 13:00:37 +03:00
|
|
|
|
*
|
|
|
|
|
* Only enable this for local development and not in production environments
|
|
|
|
|
* This will disable the minifier and outputs some additional debug information
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
2015-08-24 13:00:37 +03:00
|
|
|
|
*/
|
|
|
|
|
'debug' => false,
|
|
|
|
|
|
2016-04-18 12:50:55 +03:00
|
|
|
|
/**
|
|
|
|
|
* Sets the data-fingerprint of the current data served
|
|
|
|
|
*
|
|
|
|
|
* This is a property used by the clients to find out if a backup has been
|
|
|
|
|
* restored on the server. Once a backup is restored run
|
|
|
|
|
* ./occ maintenance:data-fingerprint
|
|
|
|
|
* To set this to a new value.
|
|
|
|
|
*
|
|
|
|
|
* Updating/Deleting this value can make connected clients stall until
|
|
|
|
|
* the user has resolved conflicts.
|
2017-01-16 17:25:02 +03:00
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
2016-04-18 12:50:55 +03:00
|
|
|
|
*/
|
|
|
|
|
'data-fingerprint' => '',
|
|
|
|
|
|
2014-10-07 12:04:54 +04:00
|
|
|
|
/**
|
|
|
|
|
* This entry is just here to show a warning in case somebody copied the sample
|
|
|
|
|
* configuration. DO NOT ADD THIS SWITCH TO YOUR CONFIGURATION!
|
|
|
|
|
*
|
|
|
|
|
* If you, brave person, have read until here be aware that you should not
|
2014-10-09 01:02:20 +04:00
|
|
|
|
* modify *ANY* settings in this file without reading the documentation.
|
2014-10-07 12:04:54 +04:00
|
|
|
|
*/
|
|
|
|
|
'copied_sample_config' => true,
|
|
|
|
|
|
2017-02-22 21:24:26 +03:00
|
|
|
|
/**
|
|
|
|
|
* use a custom lookup server to publish user data
|
|
|
|
|
*/
|
|
|
|
|
'lookup_server' => 'https://lookup.nextcloud.com',
|
|
|
|
|
|
2017-05-24 10:07:58 +03:00
|
|
|
|
/**
|
|
|
|
|
* set to true if the server is used in a setup based on Nextcloud's Global Scale architecture
|
|
|
|
|
*/
|
|
|
|
|
'gs.enabled' => false,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* by default federation is only used internally in a Global Scale setup
|
|
|
|
|
* If you want to allow federation outside of your environment set it to 'global'
|
|
|
|
|
*/
|
|
|
|
|
'gs.federation' => 'internal',
|
|
|
|
|
|
2018-01-31 16:17:56 +03:00
|
|
|
|
/**
|
|
|
|
|
* List of incompatible user agents opted out from Same Site Cookie Protection.
|
|
|
|
|
* Some user agents are notorious and don't really properly follow HTTP
|
|
|
|
|
* specifications. For those, have an opt-out.
|
2018-06-06 23:13:12 +03:00
|
|
|
|
*
|
|
|
|
|
* WARNING: only use this if you know what you are doing
|
2018-01-31 16:17:56 +03:00
|
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
|
'csrf.optout' => [
|
2018-01-31 16:17:56 +03:00
|
|
|
|
'/^WebDAVFS/', // OS X Finder
|
|
|
|
|
'/^Microsoft-WebDAV-MiniRedir/', // Windows webdav drive
|
2020-03-26 11:30:18 +03:00
|
|
|
|
],
|
2018-01-31 16:17:56 +03:00
|
|
|
|
|
2018-08-23 15:32:42 +03:00
|
|
|
|
/**
|
|
|
|
|
* By default there is on public pages a link shown that allows users to
|
|
|
|
|
* learn about the "simple sign up" - see https://nextcloud.com/signup/
|
|
|
|
|
*
|
|
|
|
|
* If this is set to "false" it will not show the link.
|
|
|
|
|
*/
|
|
|
|
|
'simpleSignUpLink.shown' => true,
|
2018-10-30 22:54:19 +03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* By default autocompletion is enabled for the login form on Nextcloud's login page.
|
|
|
|
|
* While this is enabled, browsers are allowed to "remember" login names and such.
|
|
|
|
|
* Some companies require it to be disabled to comply with their security policy.
|
|
|
|
|
*
|
|
|
|
|
* Simply set this property to "false", if you want to turn this feature off.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'login_form_autocomplete' => true,
|
2020-03-26 11:30:18 +03:00
|
|
|
|
];
|