iRony?
Thomas Brüderli
bruederli at kolabsys.com
Thu Sep 12 11:59:18 CEST 2013
Aleksander Machniak wrote:
> On 09/12/2013 10:45 AM, Markus Feilner wrote:
>> has anybody managed to make iRony work in a default install of Kolab 3.1 on
>> Centos 6.4 outside of mykolab.com? We have several installs (all of them
>> virtual), all with the same result: Sabre DAV returns the error mentioned
>> here:
>
> In httpd vhost config:
>
> <VirtualHost *:443>
> ServerName webdav.domain.com
> ServerAlias carddav.domain.com
> ServerAlias caldav.domain.com
>
> DocumentRoot /usr/share/iRony/public_html/
>
> <Directory "/usr/share/iRony/public_html/">
> AllowOverride All
> <ifModule mod_authz_core.c>
> Require all granted
> </ifModule>
> <ifModule !mod_authz_core.c>
> Order Allow,Deny
> Allow from All
> </ifModule>
>
> RewriteEngine On
> RewriteBase /
If iRony doesn't run at root of a virtual host, you need to set
RewriteBase /iRony/
which I guess it the default.
> RewriteCond %{REQUEST_FILENAME} !-f
> RewriteCond %{REQUEST_FILENAME} !-d
> RewriteRule (.*) index.php [qsappend,last]
> </Directory>
> </VirtualHost>
>
> and in /etc/iRony/dav.inc.php:
>
> $rcmail_config['base_uri'] = null;
Set this to
$rcmail_config['base_uri'] = '/iRony/';
and you should be fine.
~Thomas
More information about the users
mailing list