diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-10-17 16:27:43 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-10-17 16:27:43 +0200 |
commit | 6a60a47d595d29d9034f0bc1d565542cc76389d9 (patch) | |
tree | 2bf5cfc49bc27b1df847254966e954610324a7b2 /config | |
parent | c3c27b3e58f12da410304a7ee12f0c2668f0eec9 (diff) | |
download | nextcloud-server-6a60a47d595d29d9034f0bc1d565542cc76389d9.tar.gz nextcloud-server-6a60a47d595d29d9034f0bc1d565542cc76389d9.zip |
add options to disable the check for a working .htaccess file in data and for a working WebDAV server. This are advanced settings that are needed in special situations where our check fail and the user runs into an http timeout.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 9a24c9364e0..54dbf3f7c33 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -129,6 +129,12 @@ $CONFIG = array( /* Are we connected to the internet or are we running in a closed network? */ "has_internet_connection" => true, +/* Check if the ownCloud WebDAV server is working correctly. Can be disabled if not needed in special situations*/ +"check_for_working_webdav" => true, + +/* Check if .htaccess protection of data is working correctly. Can be disabled if not needed in special situations*/ +"check_for_working_htaccess" => true, + /* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ "log_type" => "owncloud", |