diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2021-12-17 14:39:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 14:39:40 +0100 |
commit | 4b36f9d92f886609e34f5a180f38e6034aacbd79 (patch) | |
tree | 22f9f9b3a233b41044c99f36f814e71f5a793cd8 /config | |
parent | e23133887644a2a024d0458c849b857cb85bd7f4 (diff) | |
parent | 241dfef7fb07cb5908ef6bed0f584ebeb277f653 (diff) | |
download | nextcloud-server-4b36f9d92f886609e34f5a180f38e6034aacbd79.tar.gz nextcloud-server-4b36f9d92f886609e34f5a180f38e6034aacbd79.zip |
Merge pull request #30130 from nextcloud/fix/config_is_read_only
Don't write to config file if `config_is_read_only` is set
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index daac86f42f7..0211d08676a 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -809,11 +809,11 @@ $CONFIG = [ /** * In certain environments it is desired to have a read-only configuration file. - * When this switch is set to ``true`` Nextcloud will not verify whether the - * configuration is writable. However, it will not be possible to configure - * all options via the Web interface. Furthermore, when updating Nextcloud - * it is required to make the configuration file writable again for the update - * process. + * When this switch is set to ``true``, writing to the config file will be + * forbidden. Therefore, it will not be possible to configure all options via + * the Web interface. Furthermore, when updating Nextcloud it is required to + * make the configuration file writable again and to set this switch to ``false`` + * for the update process. * * Defaults to ``false`` */ |