mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-02 17:59:36 +07:00
generate documentation from config.sample.php
This commit is contained in:
@@ -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
|
||||
|
||||
::
|
||||
|
||||
|
||||
Reference in New Issue
Block a user