generate documentation from config.sample.php

This commit is contained in:
Morris Jobke
2015-10-13 10:30:42 +02:00
parent 3cc4e9db14
commit 92b3cf08f5

View File

@@ -54,13 +54,6 @@ 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.
::
'hashingCost' => 10,
The hashing cost used by hashes generated by ownCloud
Using a higher value requires more time and CPU power to calculate the hashes
::
'trusted_domains' =>
@@ -82,17 +75,6 @@ directory. The SQLite database is also stored here, when you use SQLite.
(SQLite is not available in ownCloud Enterprise Edition)
::
'tempdirectory' => '/tmp/owncloudtemp',
Override where ownCloud stores temporary files. Useful in situations where
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.
The web server user must have write access to this directory.
::
'version' => '',
@@ -150,22 +132,6 @@ you shouldn't need to change it.
Prefix for the ownCloud tables in the database.
::
'dbdriveroptions' => array(
PDO::MYSQL_ATTR_SSL_CA => '/file/path/to/ca_cert.pem',
),
Additional driver options for the database connection, eg. to enable SSL
encryption in MySQL.
::
'sqlite.journal_mode' => 'DELETE',
sqlite3 journal mode can be specified using this config parameter - can be
'WAL' or 'DELETE' see for more details https://www.sqlite.org/wal.html
::
'installed' => false,
@@ -1131,6 +1097,26 @@ to be fetched in addition to any requested file.
One way to test is applying for a trystack account at http://trystack.org/
All other config options
------------------------
::
'dbdriveroptions' => array(
PDO::MYSQL_ATTR_SSL_CA => '/file/path/to/ca_cert.pem',
),
Additional driver options for the database connection, eg. to enable SSL
encryption in MySQL.
::
'sqlite.journal_mode' => 'DELETE',
sqlite3 journal mode can be specified using this config parameter - can be
'WAL' or 'DELETE' see for more details https://www.sqlite.org/wal.html
::
'supportedDatabases' => array(
@@ -1148,9 +1134,23 @@ Available:
- pgsql (PostgreSQL)
- oci (Oracle - Enterprise Edition Only)
All other config options
------------------------
::
'tempdirectory' => '/tmp/owncloudtemp',
Override where ownCloud stores temporary files. Useful in situations where
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.
The web server user must have write access to this directory.
::
'hashingCost' => 10,
The hashing cost used by hashes generated by ownCloud
Using a higher value requires more time and CPU power to calculate the hashes
::