Issue with CardDAV setup

When setting up a CardDAV server on a mobile device, it will not automatically verify the settings. I have found that I need to add /remote.php/dav to the server name to make it verify properly. Is there a setting that is messed up for me?

Thanks,
Mike

Did you add the .well-known urls to your web server configuration?

Thanks for your help. I found the config file and made the adjustment.

Those are setup as part of your web server configuration. Here is an example for Nginx.

# Caldav and Carddav rewrites
location ~ /.well-known/(cal|card)dav {
        return 301 $scheme://$host/remote.php/dav;
 }

I believe there are some Apache examples in the documentation.