diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-03 17:48:25 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-03 17:48:25 +0100 |
commit | d30059d76ce04a9b2a4bd91d0261977bb0c972ce (patch) | |
tree | ed37bb90b38213794821e3134be69f28e1cae211 /config | |
parent | 5fe7781452e61042d863eda72afc272ccb5b14ad (diff) | |
parent | f5d95139579fc1865f1f18e13aab24998d2e7d9d (diff) | |
download | nextcloud-server-d30059d76ce04a9b2a4bd91d0261977bb0c972ce.tar.gz nextcloud-server-d30059d76ce04a9b2a4bd91d0261977bb0c972ce.zip |
Merge pull request #12528 from owncloud/backport-12419
Allow read-only configuration
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 46b52586526..6da3a682f19 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -436,6 +436,15 @@ $CONFIG = array( */ 'check_for_working_htaccess' => true, +/** + * In certain environments it is desired to have a read-only config file. + * When this switch is set to ``true`` ownCloud 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 ownCloud + * it is required to make the config file writable again for the update + * process. + */ +'config_is_read_only' => false, /** * Logging |