From 92b3cf08f514249c93dccaeff17246c1877d0430 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 13 Oct 2015 10:30:42 +0200 Subject: [PATCH] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 72 +++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index 966bec72f..eed1aad56 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -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 ::