Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions admin_manual/configuration_server/security_setup_warnings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,21 @@ websites. To ensure that Nextcloud will work properly you need to update OpenSSL
to at least 1.0.2b or 1.0.1d. For NSS the patch version depends on your distribution
and an heuristic is running the test which actually reproduces the bug.

Your Web server is not set up properly to resolve /.well-known/caldav/ or /.well-known/carddav/
-----------------------------------------------------------------------------------------------
Your Web server is not set up properly to resolve /.well-known/ URLs
--------------------------------------------------------------------

Both URLs need to be correctly redirected to the DAV endpoint of Nextcloud. Please
refer to :ref:`service-discovery-label` for more info.
The following well-known URLs must be correctly redirected for full Nextcloud functionality:

* ``/.well-known/caldav`` → ``/remote.php/dav`` (CalDAV service discovery)
* ``/.well-known/carddav`` → ``/remote.php/dav`` (CardDAV service discovery)
* ``/.well-known/webfinger`` → ``/index.php/.well-known/webfinger`` (identity/federation)
* ``/.well-known/nodeinfo`` → ``/index.php/.well-known/nodeinfo`` (server metadata)
Comment on lines +125 to +126
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks wrong, there shouldn't be a redirect here.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You mean we should have a redirect for that nodeinfo thing ?
I found this in the server code 🤔
https://github.com/nextcloud/server/blob/926cecba3c3924acbc3fec5573dc808119ec27f8/apps/settings/lib/SetupChecks/WellKnownUrls.php#L52


The CalDAV and CardDAV redirects are required for calendar and contacts clients that use
automatic service discovery. The WebFinger and NodeInfo redirects are used for federation
and profile discovery between Nextcloud instances and compatible services.

Please refer to :ref:`service-discovery-label` for setup instructions for Apache and NGINX.

Some files have not passed the integrity check
----------------------------------------------
Expand Down
Loading