-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.well-known URLs, failed on: /.well-known/caldav #701
Comments
Be careful, it seems not been a good idea to try this patch ! The issue will be fixed in version 29.0.4 |
29.0.4 does not fix the issue for my server using NGINX with Nextcloud in a subdirectory |
The trailing slash is now not needed anymore, but sub directories are still not supported. But a PR is open, and awaits review/suggested adjustments: nextcloud/server#46255 |
It seems the check expects a redirection to So Lines 25 to 27 in 49c28ca
|
@MCMic can you be more specific about what need to be changed? our settings seem to be the same as suggested in the doc...
|
I thought this part was missing, it’s missing in my local version, it seems to be there in the git version. The file does not appear in the output of |
Describe the bug
After upgrade I have a message
.well-known URLs, failed on: /.well-known/caldav
Context
29.0.2~ynh
1 (stable branch) and have try the testing branch nextcloud29.0.3~ynh1
29.0.3~ynh1
(was also with29.0.2~ynh1
)Steps to reproduce
If you performed a command from the CLI, the command itself is enough. For example:
If the error occurs in your browser, explain what you did:
Your web server is not properly set up to resolve .well-known URLs, failed on: /.well-known/caldav For more details see the [documentation ↗](https://docs.nextcloud.com/server/29/go.php?to=admin-setup-well-known-URL).
**Expected behavior
*Keep the
/.well-known/caldav
working after an update *This issue is related there :
nextcloud/server#45033
After trying a lot of things to debug, like editing the nginx nextcloud.conf, I have understood my problem is because for subfolder installations because this will be checking for /subfolder/.well-known/carddav instead of /.well-known/carddav whereas applications using WebDAV will be querying for /.well-known/carddav without the subfolder.
So this issue comes with a nextcloud installed on a subpath URL like
https://mydomain.tld/nextcloud/
This post help me resolve the issue: nextcloud/server#45033 (comment)
So editing the file
/var/www/nextcloud/apps/settings/lib/SetupChecks/CheckServerResponseTrait.php
and change the line 64with :
The text was updated successfully, but these errors were encountered: