small corrections; Web is capitalized, webroot is one lowercase word

This commit is contained in:
Carla Schroder 2016-02-02 15:30:07 -08:00 committed by Joas Schilling
parent d7892619b1
commit 7d49bb6323
1 changed files with 15 additions and 15 deletions

View File

@ -9,8 +9,8 @@
* consider important for your instance to your working ``config.php``, and * consider important for your instance to your working ``config.php``, and
* apply configuration options that are pertinent for your instance. * apply configuration options that are pertinent for your instance.
* *
* This file is used to generate the config documentation. Please consider * This file is used to generate the configuration documentation.
* following requirements of the current parser: * Please consider following requirements of the current parser:
* * all comments need to start with `/**` and end with ` *\/` - each on their * * all comments need to start with `/**` and end with ` *\/` - each on their
* own line * own line
* * add a `@see CONFIG_INDEX` to copy a previously described config option * * add a `@see CONFIG_INDEX` to copy a previously described config option
@ -488,16 +488,16 @@ $CONFIG = array(
* to ``true``. This verifies that the ``.htaccess`` file is writable and works. * 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 * 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, * file uploads, will not work. It also runs checks on the ``data/`` directory,
* which verifies that it can't be accessed directly through the web server. * which verifies that it can't be accessed directly through the Web server.
*/ */
'check_for_working_htaccess' => true, 'check_for_working_htaccess' => true,
/** /**
* In certain environments it is desired to have a read-only config file. * In certain environments it is desired to have a read-only configuration file.
* When this switch is set to ``true`` ownCloud will not verify whether the * When this switch is set to ``true`` ownCloud will not verify whether the
* configuration is writable. However, it will not be possible to configure * configuration is writable. However, it will not be possible to configure
* all options via the web-interface. Furthermore, when updating ownCloud * all options via the Web interface. Furthermore, when updating ownCloud
* it is required to make the config file writable again for the update * it is required to make the configuration file writable again for the update
* process. * process.
*/ */
'config_is_read_only' => false, 'config_is_read_only' => false,
@ -660,9 +660,9 @@ $CONFIG = array(
* Use the ``apps_paths`` parameter to set the location of the Apps directory, * 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 * which should be scanned for available apps, and where user-specific apps
* should be installed from the Apps store. The ``path`` defines the absolute * should be installed from the Apps store. The ``path`` defines the absolute
* file system path to the app folder. The key ``url`` defines the HTTP web path * file system path to the app folder. The key ``url`` defines the HTTP Web path
* to that folder, starting from the ownCloud web root. The key ``writable`` * to that folder, starting from the ownCloud webroot. The key ``writable``
* indicates if a web server can write files to that folder. * indicates if a Web server can write files to that folder.
*/ */
'apps_paths' => array( 'apps_paths' => array(
array( array(
@ -999,7 +999,7 @@ $CONFIG = array(
/** /**
* All other config options * All other configuration options
*/ */
/** /**
@ -1011,8 +1011,8 @@ $CONFIG = array(
), ),
/** /**
* sqlite3 journal mode can be specified using this config parameter - can be * sqlite3 journal mode can be specified using this configuration parameter -
* 'WAL' or 'DELETE' see for more details https://www.sqlite.org/wal.html * can be 'WAL' or 'DELETE' see for more details https://www.sqlite.org/wal.html
*/ */
'sqlite.journal_mode' => 'DELETE', 'sqlite.journal_mode' => 'DELETE',
@ -1038,7 +1038,7 @@ $CONFIG = array(
* restricted, or if external storages which do not support streaming are in * restricted, or if external storages which do not support streaming are in
* use. * use.
* *
* The web server user must have write access to this directory. * The Web server user must have write access to this directory.
*/ */
'tempdirectory' => '/tmp/owncloudtemp', 'tempdirectory' => '/tmp/owncloudtemp',
@ -1104,7 +1104,7 @@ $CONFIG = array(
'filesystem_check_changes' => 0, 'filesystem_check_changes' => 0,
/** /**
* All css and js files will be served by the web server statically in one js * 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``. This improves performance. * file and one css file if this is set to ``true``. This improves performance.
*/ */
'asset-pipeline.enabled' => false, 'asset-pipeline.enabled' => false,
@ -1115,7 +1115,7 @@ $CONFIG = array(
* will be stored in a subdirectory of this directory named 'assets'. The * will be stored in a subdirectory of this directory named 'assets'. The
* server *must* be configured to serve that directory as $WEBROOT/assets. * server *must* be configured to serve that directory as $WEBROOT/assets.
* You will only likely need to change this if the main ownCloud directory * You will only likely need to change this if the main ownCloud directory
* is not writeable by the web server in your configuration. * is not writeable by the Web server in your configuration.
*/ */
'assetdirectory' => '/var/www/owncloud', 'assetdirectory' => '/var/www/owncloud',