diff options
author | Josh <josh.t.richards@gmail.com> | 2025-01-09 12:09:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-09 12:09:33 -0500 |
commit | 1304590d6c8ef3a37c8d2346b3a010999734b5b4 (patch) | |
tree | a00e1a909a8616ed4c84980d03a6a24fa630e63f /config | |
parent | 2f754529cefbfe43bd042b9ae64cac9ccf8026ea (diff) | |
parent | 35cb5d84caf5fb2a9e9d28f53b9f3f97805c0dc3 (diff) | |
download | nextcloud-server-1304590d6c8ef3a37c8d2346b3a010999734b5b4.tar.gz nextcloud-server-1304590d6c8ef3a37c8d2346b3a010999734b5b4.zip |
Merge pull request #49977 from nextcloud/jtr-perf-checks-connectivity-https-proto
perf(settings): Speed up InternetConnectivity setup check
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index b19b6238c12..d5d88b71e4a 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -936,16 +936,16 @@ $CONFIG = [ * * Defaults to the following domains: * - * - www.nextcloud.com - * - www.startpage.com - * - www.eff.org - * - www.edri.org + * - https://www.nextcloud.com + * - https://www.startpage.com + * - https://www.eff.org + * - https://www.edri.org */ 'connectivity_check_domains' => [ - 'www.nextcloud.com', - 'www.startpage.com', - 'www.eff.org', - 'www.edri.org' + 'https://www.nextcloud.com', + 'https://www.startpage.com', + 'https://www.eff.org', + 'https://www.edri.org' ], /** |