Hello,

I have a problem to configure CalDav and CardDav on my OX server. I read this documentation (http://oxpedia.org/wiki/index.php?ti...caldav.enabled) and configure my Apache2 conf, like this :

<VirtualHost *:443>
ServerName dav.domain.tld
ErrorLog /var/log/apache2/dav.err.log
TransferLog /var/log/apache2/dav.access.log

<Proxy balancer://oxserver-sync>
Order deny,allow
Allow from all

# for grizzly http service
BalancerMember http://localhost:8009 timeout=100 smax=0 ttl=60 retry=60 loadfactor=50 route=OX1
# uncomment this entry if you have a clustered setup and want to use the other nodes too
#BalancerMember http://<ip-of-other-host>:8009 timeout=100 smax=0 ttl=60 retry=60 loadfactor=50 route=OX2
SetEnv proxy-initial-not-pooled
SetEnv proxy-sendchunked
</Proxy>

ProxyPass / balancer://oxserver-sync/servlet/dav/

</VirtualHost>

<VirtualHost ox.domain.tld:443>

ServerName ox.domain.tld
DocumentRoot /var/www/html
<Directory /var/www/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
RedirectMatch ^/$ /appsuite/
</Directory>

<Directory /var/www/html/appsuite>
Options None +SymLinksIfOwnerMatch
AllowOverride Indexes FileInfo
</Directory>

SSLEngine On
SSLCertificateFile /etc/ssl/certs/ox.domain.tld.crt
SSLCertificateKeyFile /etc/ssl/private/ox.domain.tld.key
SSLVerifyClient None

ErrorLog /var/log/apache2/error_ssl.log
LogLevel warn

</VirtualHost>

My DNS is OK with URL dav.domain.tld

Can you help me to solve this problem please. Thanks.

Regards,
Arnaud.