diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-07-09 10:20:59 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-07-09 10:20:59 +0200 |
commit | e47bf07b5eece2a4e9ab0d842cbbcb0fc03eda3f (patch) | |
tree | 16a8fd643c7e2c230ef7b035360758f8425c550a /config | |
parent | 97b3a82581be3a0c98a80d47e7d50951ee26a947 (diff) | |
download | nextcloud-server-e47bf07b5eece2a4e9ab0d842cbbcb0fc03eda3f.tar.gz nextcloud-server-e47bf07b5eece2a4e9ab0d842cbbcb0fc03eda3f.zip |
[config sample] improve RST markup and wording
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 4868ce8fc95..b58a08bb70a 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -80,8 +80,8 @@ $CONFIG = array( /** * Where user files are stored; this defaults to ``data/`` in the ownCloud - * directory. The SQLite database is also stored here, when you use SQLite. (SQLite is - * available only in ownCloud Community Edition) + * directory. The SQLite database is also stored here, when you use SQLite. + * (SQLite is not available in ownCloud Enterprise Edition) */ 'datadirectory' => '/var/www/owncloud/data', @@ -96,7 +96,7 @@ $CONFIG = array( * ``supportedDatabases`` * * Available: - * - sqlite (SQLite3 - Community Edition Only) + * - sqlite (SQLite3 - Not in Enterprise Edition) * - mysql (MySQL/MariaDB) * - pgsql (PostgreSQL) * - oci (Oracle - Enterprise Edition Only) @@ -838,7 +838,7 @@ $CONFIG = array( * Database types that are supported for installation. * * Available: - * - sqlite (SQLite3 - Community Edition Only) + * - sqlite (SQLite3 - Not in Enterprise Edition) * - mysql (MySQL) * - pgsql (PostgreSQL) * - oci (Oracle - Enterprise Edition Only) @@ -920,7 +920,7 @@ $CONFIG = array( /** * All css and js files will be served by the web server statically in one js - * file and one css file if this is set to ``true``. + * file and one css file if this is set to ``true``. This improves performance. */ 'asset-pipeline.enabled' => false, @@ -966,9 +966,8 @@ $CONFIG = array( * max file size for animating gifs on public-sharing-site. * If the gif is bigger, it'll show a static preview * - * Value represents the maximum filesize in megabytes - * Default is 10 - * Set to -1 for no limit + * Value represents the maximum filesize in megabytes. Default is 10. Set to + * -1 for no limit. */ 'max_filesize_animated_gifs_public_sharing' => 10, |