host-meta is not reachable
!Friendica Support
After switching my vps server from apache to nginx, I get the following message in admin:
https://friendica.vrije-mens.org/.well-known/host-meta is not reachable on your system. This is a severe configuration issue that prevents server to server communication.
------------
I've checked the nginx server config file and the location block for .well-known is present with allow all
Is this a known issue or does anyone gave suggestions?
After switching my vps server from apache to nginx, I get the following message in admin:
https://friendica.vrije-mens.org/.well-known/host-meta is not reachable on your system. This is a severe configuration issue that prevents server to server communication.
------------
I've checked the nginx server config file and the location block for .well-known is present with allow all
Is this a known issue or does anyone gave suggestions?
Casper Rutten
in reply to Casper Rutten • •# by denying dot files and rewrite request to the front controller
location ^~ /.well-known/ {
allow all;
}
# deny access to all dot files
location ~ /\. {
deny all;
}
You need more than this?
Casper Rutten
in reply to Casper Rutten • •... toon meer
Casper Rutten
in reply to Casper Rutten • •Does the warning disappear directly after changing, or does it take some time. I had it switch on before, but the message remained.
Casper Rutten
in reply to Casper Rutten • •Casper Rutten
in reply to Casper Rutten • •No errors in error.log after uncommenting the rewrite directive.
Miradajoyse
in reply to Casper Rutten • •Friendica Support reshared this.