diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-01-12 09:53:23 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-01-12 09:53:23 +0100 |
commit | 8b6b042ffde9490c24a1689919dbc6678381239c (patch) | |
tree | 1b5f30630887c44dcde93beaff08db3d199496ca /config | |
parent | 3317dd0a8e2ca265172d53a16f9241f3351aa3b8 (diff) | |
download | nextcloud-server-8b6b042ffde9490c24a1689919dbc6678381239c.tar.gz nextcloud-server-8b6b042ffde9490c24a1689919dbc6678381239c.zip |
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 |