diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-11-30 11:16:00 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-12-01 11:55:29 +0100 |
commit | 17c13e4436c44d7a6336d2c84be989cf5fd6df1b (patch) | |
tree | 1f346142a047752e16aafd6d86ce587352951600 /config | |
parent | 8656462edb4ef21184ed4fe499246166a512e26a (diff) | |
download | nextcloud-server-17c13e4436c44d7a6336d2c84be989cf5fd6df1b.tar.gz nextcloud-server-17c13e4436c44d7a6336d2c84be989cf5fd6df1b.zip |
Allow to skip data dir permission checks by config
Enables installation on services that don't allow/support permission
changes.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 71d1aa3a02c..57811f2e66f 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -646,6 +646,18 @@ $CONFIG = array( 'check_for_working_htaccess' => true, /** + * In rare setups (e.g. on Openshift or docker on windows) the permissions check + * might block the installation while the underlying system offers no means to + * "correct" the permissions. In this case, set the value to false. + * + * In regular cases, if issues with permissions are encountered they should be + * adjusted accordingly. Changing the flag is discouraged. + * + * Defaults to ``true`` + */ +'check_data_directory_permissions' => true, + +/** * 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 |