Nextcloud version _29.0.0
Operating system and version _DietPi v9.3.0
Apache or nginx version _ Apache/2.4.59 (Debian)
PHP version _PHP 8.2.18
The issue you are facing:
After updating nextcloud to 29.0.0 i see this error message
Your web server is not properly set up to resolve `.well-known` URLs, failed on: `/.well-known/webfinger`
Is this the first time you’ve seen this error? (Y/N): Yes
After following the documentation and paste these lines to my .htaccess file
If your Nextcloud instance is installed in a subfolder called nextcloud and you’re running Apache, create or edit the .htaccess file within the document root of your Web server and add the following lines:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^\.well-known/carddav /nextcloud/remote.php/dav [R=301,L]
RewriteRule ^\.well-known/caldav /nextcloud/remote.php/dav [R=301,L]
RewriteRule ^\.well-known/webfinger /nextcloud/index.php/.well-known/webfinger [R=301,L]
RewriteRule ^\.well-known/nodeinfo /nextcloud/index.php/.well-known/nodeinfo [R=301,L]
</IfModule>
there still is the error message
thank you in advance