From 338524dcce328fd52babcace99ffc340fe44ca1a Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Mon, 3 Mar 2025 07:29:02 +0100 Subject: [PATCH] extend config.js section --- Client-InfCloud.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/Client-InfCloud.md b/Client-InfCloud.md index 4bcf776..4e9b3b5 100644 --- a/Client-InfCloud.md +++ b/Client-InfCloud.md @@ -31,7 +31,28 @@ unzip -d /var/www/html/ /tmp/InfCloud_0.13.1.zip ## Configuration InfCloud -Adjust config.js like: +Adjust `config.js` related to + +```javascript +var globalNetworkCheckSettings={ + href: location.protocol+'//'+location.hostname+ + (location.port ? ':'+location.port: '')+ + location.pathname.replace(RegExp('/+[^/]+/*(index\.html)?$'),'')+ + '/caldav.php/', + timeOut: 90000, + lockTimeOut: 10000, + checkContentType: true, + settingsAccount: true, + delegation: true, + additionalResources: [], + hrefLabel: null, + forceReadOnly: null, + ignoreAlarms: false, + backgroundCalendars: [] +} +``` + +like ```diff --- /var/www/html/infcloud/config.js 2015-09-22 15:30:10.000000000 +0200