As the title says, i have this error:
- Your web server is not properly set up to resolve “/.well-known/webfinger”. Further information can be found in the documentation
.
- Your web server is not properly set up to resolve “/.well-known/nodeinfo”. Further information can be found in the documentation
.
I’ve tried the HTaccess, ive tried so much stuff but nothing works. I don’t know what to do at this point.
htaccess:
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]
nextcloud.conf:
GNU nano 6.2 nextcloud.conf
<VirtualHost *:80>
ServerName URL
Redirect permanent / URL
<VirtualHost *:443>
ServerName [URL]
DocumentRoot /var/www/html/nextcloud
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/[URL]/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/[URL]/privkey.pem
Header always set Strict-Transport-Security “max-age=15552000; includeSubDomains; preload”
<Directory /var/www/html/nextcloud>
Options FollowSymLinks
AllowOverride All
Require all granted
i dont know what to do anymore.