Webserver "/.well-known/caldav" - Synology Docker Nextcloud Nginx CalDav/CardDav

Why donā€™t you share your experience?

I donā€™t know what you are talking about. Everything is written in this thread otherwise it would not work for me.

Can you give the details of the modifications you made on your files?
What strings youā€™ve changed or added?
What was the mistake for the carddav link?

1 Like

Finally Iā€™ve found the solution.

You have to edit file .htaccess located in docker/your_nextcloud_folder.
Under <IfModule mod_rewrite.c> you have to edit just 2 strings:

RewriteRule ^\.well-known/carddav /remote.php/dav/ [R=301,L]
RewriteRule ^\.well-known/caldav /remote.php/dav/ [R=301,L]

It should looks like this:

RewriteRule ^\.well-known/carddav https://your_site_address/remote.php/dav/ [R=301,L]
RewriteRule ^\.well-known/caldav https://your_site_address/remote.php/dav/ [R=301,L]

Iā€™m not sure, but after editing you may have to restart Nextcloud container.

Sorry for my English.

3 Likes