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