Skip to content

Commit

Permalink
Add default.settings.php changes from 7.91.
Browse files Browse the repository at this point in the history
  • Loading branch information
kporras07 committed Aug 1, 2022
1 parent 087debb commit f70b8d4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions sites/default/default.settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -782,3 +782,26 @@
* directory.
*/
# $conf['skip_permissions_hardening'] = TRUE;

/**
* Additional public file schemes:
*
* Public schemes are URI schemes that allow download access to all users for
* all files within that scheme.
*
* The "public" scheme is always public, and the "private" scheme is always
* private, but other schemes, such as "https", "s3", "example", or others,
* can be either public or private depending on the site. By default, they're
* private, and access to individual files is controlled via
* hook_file_download().
*
* Typically, if a scheme should be public, a module makes it public by
* implementing hook_file_download(), and granting access to all users for all
* files. This could be either the same module that provides the stream wrapper
* for the scheme, or a different module that decides to make the scheme
* public. However, in cases where a site needs to make a scheme public, but
* is unable to add code in a module to do so, the scheme may be added to this
* variable, the result of which is that system_file_download() grants public
* access to all files within that scheme.
*/
# $conf['file_additional_public_schemes'] = array('example');

0 comments on commit f70b8d4

Please sign in to comment.