mirror of
https://github.com/Kozea/Radicale.git
synced 2025-09-15 20:36:55 +00:00
extend instructions
parent
6dd3569540
commit
3757a0f900
1 changed files with 38 additions and 10 deletions
|
@ -7,21 +7,49 @@
|
|||
|
||||
* Radicale is running behind same reverse proxy as "InfCloud" is served and `/radicale` is forwarded from reverse proxy to local server port
|
||||
|
||||
# Download
|
||||
|
||||
```bash
|
||||
## Example for version 0.13.1
|
||||
# Download to temporary directory
|
||||
wget -P /tmp/ https://inf-it.com/open-source/download/InfCloud_0.13.1.zip
|
||||
```
|
||||
|
||||
# Install
|
||||
|
||||
## Fedora/Enterprise Linux
|
||||
|
||||
```bash
|
||||
## Example for version 0.13.1
|
||||
# Take from temporary directory
|
||||
# Extract into public accessible web server directory
|
||||
unzip -d /var/www/html/ /tmp/InfCloud_0.13.1.zip
|
||||
```
|
||||
|
||||
|
||||
# Configuration
|
||||
|
||||
## Configuration InfCloud
|
||||
|
||||
Adjust config.js to following:
|
||||
Adjust config.js like:
|
||||
|
||||
```
|
||||
var globalNetworkCheckSettings={
|
||||
href: location.protocol+'//'+location.hostname+
|
||||
(location.port ? ':'+location.port: '')+
|
||||
location.pathname.replace(RegExp('/+[^/]+/*(index\.html)?$'),'')+
|
||||
'/radicale/',
|
||||
...
|
||||
settingsAccount: false,
|
||||
...
|
||||
```diff
|
||||
--- /var/www/html/infcloud/config.js 2015-09-22 15:30:10.000000000 +0200
|
||||
+++ /var/www/html/infcloud/config.js 2025-03-02 08:15:11.632058206 +0100
|
||||
@@ -335,11 +335,11 @@
|
||||
href: location.protocol+'//'+location.hostname+
|
||||
(location.port ? ':'+location.port: '')+
|
||||
location.pathname.replace(RegExp('/+[^/]+/*(index\.html)?$'),'')+
|
||||
- '/caldav.php/',
|
||||
+ '/radicale/',
|
||||
timeOut: 90000,
|
||||
lockTimeOut: 10000,
|
||||
checkContentType: true,
|
||||
- settingsAccount: true,
|
||||
+ settingsAccount: false,
|
||||
delegation: true,
|
||||
additionalResources: [],
|
||||
hrefLabel: null,
|
||||
```
|
||||
|
||||
## Configuration Radicale "rights"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue