diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-12 14:46:09 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-12 14:46:09 +0100 |
commit | 2493cfede92c472c29cffc098206b8cdb7a2ca30 (patch) | |
tree | 781eea83cdf925fd93384205c89e8a8be9d494eb /config | |
parent | 4fc0fbe8d04b7b89ffe1c3b79621ebe12b2057be (diff) | |
parent | 8b6b042ffde9490c24a1689919dbc6678381239c (diff) | |
download | nextcloud-server-2493cfede92c472c29cffc098206b8cdb7a2ca30.tar.gz nextcloud-server-2493cfede92c472c29cffc098206b8cdb7a2ca30.zip |
Merge pull request #21640 from owncloud/add-config-to-disable-wellknown-check
Add config switch to disable the .well-known URL check
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 7ba3977fe3a..525a0895b07 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -477,6 +477,13 @@ $CONFIG = array( 'check_for_working_webdav' => true, /** + * Allows ownCloud to verify a working .well-known URL redirects. This is done + * by attempting to make a request from JS to + * https://your-domain.com/.well-known/caldav/ + */ +'check_for_working_wellknown_setup' => true, + +/** * This is a crucial security check on Apache servers that should always be set * to ``true``. This verifies that the ``.htaccess`` file is writable and works. * If it is not, then any options controlled by ``.htaccess``, such as large |