Skip to content

Commit

Permalink
Merge pull request #31127 from owncloud/stable10-31119-d67819c
Browse files Browse the repository at this point in the history
[stable10] Some config.sample.php fixes
  • Loading branch information
Vincent Petry authored Apr 16, 2018
2 parents 419ace1 + 66d849d commit 57761f9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -1216,8 +1216,10 @@
'tempdirectory' => '/tmp/owncloudtemp',

/**
* The hashing cost used by hashes generated by ownCloud
* Using a higher value requires more time and CPU power to calculate the hashes
* The hashing cost used by hashes generated by ownCloud.
* Using a higher value requires more time and CPU power to calculate the hashes.
* As this number grows, the amount of work (typically CPU time or memory) necessary
* to compute the hash increases exponentially.
*/
'hashingCost' => 10,

Expand Down Expand Up @@ -1257,13 +1259,13 @@
/**
* The list of apps that are allowed to have no signature.json. Besides
* ownCloud apps, this is particularly useful when creating ownCloud themes,
* because themes are treated as apps.
* The following example allows theme-1 and theme-2 to have no signature.
* because themes are treated as apps. The app is identified with it´s app-id.
* The following example allows app-1 and theme-2 to have no signature.
*/
'integrity.ignore.missing.app.signature' =>
array(
'theme-1',
'theme-2',
'app-id of app-1',
'app-id of theme-2',
),

/**
Expand Down

0 comments on commit 57761f9

Please sign in to comment.